isEqualTo method

bool isEqualTo(
  1. Version other
)

Returns true if this version is equal to the given version.

Implementation

bool isEqualTo(Version other) => this._compareTo(other) == 0;