operator >= method
Returns whether this ISO object's code is greater than or equal to
other
's code.
Implementation
bool operator >=(T? other) =>
_compareTo(other, (result) => !result.isNegative);
Returns whether this ISO object's code is greater than or equal to
other
's code.
bool operator >=(T? other) =>
_compareTo(other, (result) => !result.isNegative);