isHigherThan method

bool isHigherThan(
  1. Version other
)

Returns true if this version is higher than the given version.

Implementation

bool isHigherThan(Version other) => this._compareTo(other) == 1;