operator < method

bool operator <(
  1. dynamic other
)

Less than comparison.

Implementation

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