isVersionGreaterThanOrEqual method

bool isVersionGreaterThanOrEqual(
  1. String other
)

Implementation

bool isVersionGreaterThanOrEqual(String other) {
  // print('Compareeeeeee');
  // print('Comparing $this with $other');
  return compareVersions(this, other) >= 0;
}