SemVer constructor

SemVer(
  1. int major,
  2. int minor,
  3. int patch, {
  4. List<String> preRelease = const <String>[],
  5. String? build,
})

Implementation

SemVer(
  super.major,
  super.minor,
  super.patch, {
  super.preRelease,
  String? build,
}) : super(build: build ?? "");