operator >= method

  1. @nonVirtual
bool operator >=(
  1. T other
)

Greater than or equal comparison.

Implementation

@nonVirtual
bool operator >=(T other) => value >= other.value;