operator <= method

bool operator <=(
  1. covariant MoneyTransaction other
)

Return if this instance is less than or equal to the other.

Implementation

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