Version constructor
Default constructor for Version.
Params:
- major: the major field of the version.
- minor: the minor field of the version.
- patch: the patch field of the version.
- buildNumber: the build number field of the version.
Implementation
Version(
this.major,
this.minor,
this.patch,
this.buildNumber,
);