change method
Changes the version by the given amounts.
Implementation
Version change({
int? major,
int? minor,
int? patch,
int? build,
}) {
return Version(
major: major ?? this.major,
minor: minor ?? this.minor,
patch: patch ?? this.patch,
build: build ?? this.build,
);
}