operator >= method

  1. @override
bool operator >=(
  1. Quantity other
)
override

Determines whether on not this Quantity is greater than or equal to a specified Quantity by comparing their MKS values. The two Quantities need not be of the same type or dimensions.

Implementation

@override
bool operator >=(Quantity other) => snapshot.compareTo(other) >= 0;