operator <= method

bool operator <=(
  1. dynamic other
)

Less than or equal comparison.

Implementation

bool operator <=(dynamic other) => (value as dynamic) <= _extract(other);