Versum allows to custom define version constraint policy depending package manager.
Parse version
- Constructor
SemVer constructor = SemVer(major: 1);
- Parse from String
SemVer parse = SemVer.parse("1.0.0");
Version constraint
P.S. Different package has different implementation.
VersionConstraint constraint = DummyVersionConstraint(">=1.0.0 <2.0.0");
bool isInRange = constraint.stastified(SemVer.parse("1.2.0"));
BSD-3