operator >= method

bool operator >=(
  1. Object other
)

Implementation

bool operator >=(Object other) =>
    _isNumber(other) && isGreaterThanOrEqual(other);