operator < method

bool operator <(
  1. Object other
)

Returns whether this decimal is less than other.

Implementation

bool operator <(Object other) => _compareObject(other, operation: '<') < 0;