operator < method

bool operator <(
  1. covariant Budget other
)

Returns if this instance is less than the other.

Implementation

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