operator < method

bool operator <(
  1. covariant MoneyTransaction other
)

Returns if this instance is less than the other.

Implementation

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