isLowerThan method

bool isLowerThan(
  1. Version other
)

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

Implementation

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