operator < method

bool operator <(
  1. covariant Money other
)

Returns if this instance is less than the other.

Implementation

bool operator <(covariant Money other) => compareTo(other) < 0;