compareTo method

int compareTo(
  1. FlutterVersion other
)
inherited

Compares CacheVersion with other

Implementation

int compareTo(FlutterVersion other) {
  final otherVersion = assignVersionWeight(other.version);
  final versionWeight = assignVersionWeight(version);

  return compareSemver(versionWeight, otherVersion);
}