operator >= method
Implementation
bool operator >=(dynamic other) {
if (other is! Percent) return false;
return fmu >= other.fmu && precision == other.precision;
}
bool operator >=(dynamic other) {
if (other is! Percent) return false;
return fmu >= other.fmu && precision == other.precision;
}