operator < method

bool operator <(
  1. T? other
)

Returns whether this ISO object's code is less than other's code.

Implementation

bool operator <(T? other) => _compareTo(other, (result) => result.isNegative);