Version class
Represents a software version using semantic versioning, which is a widely adopted versioning format.
- Major version (first number): Incremented for incompatible API changes or major rewrites. Users should expect breaking changes.
- Minor version (second number): Incremented for new features that are backward-compatible. Existing functionality remains valid.
- Patch version (third number): Incremented for bug fixes or small improvements that do not add new features or break compatibility.
Properties
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toString(
) → String -
A string representation of this object.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited