operator <= method

LogicValue operator <=(
  1. dynamic other
)

Less-than-or-equal operation.

Implementation

LogicValue operator <=(dynamic other) =>
    // ignore: avoid_dynamic_calls
    _doCompare(other, (a, b) => (a <= b) as bool);