operator == method
bool
operator ==(
- dynamic o
)
override
Determines whether the left-hand Version represents an equal precedence to the right-hand Version.
Implementation
@override
bool operator ==(dynamic o) => o is Version && _compare(this, o) == 0;