operator >= method

bool operator >=(
  1. MixedFraction other
)

Checks whether this mixed fraction is greater or equal than the other.

Implementation

bool operator >=(MixedFraction other) => toDouble() >= other.toDouble();