operator <= method

bool operator <=(
  1. Object other
)

Returns whether this decimal is less than or equal to other.

Implementation

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