operator >= method

bool operator >=(
  1. dynamic other
)

Greater than or equal comparison.

Implementation

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