operator < method

bool operator <(
  1. covariant Contact other
)

Returns if this instance is less than the other.

Implementation

bool operator <(covariant Contact other) => compareTo(other) < 0;