isGreaterThanOrEqual method

bool isGreaterThanOrEqual(
  1. Object other
)

Implementation

@pragma("vm:prefer-inline")
bool isGreaterThanOrEqual(Object other) {
  _checkArg(other, "other");
  return isGreaterThan(other) || isEqual(other);
}