operator >= method

bool operator >=(
  1. covariant Contact other
)

Return if this instance is greater than or equal to the other.

Implementation

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