operator >= method

bool operator >=(
  1. dynamic other
)

Implementation

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