operator >= method

bool operator >=(
  1. dynamic other
)
inherited

Implementation

bool operator >=(other) =>
    other is _BaseAddress &&
    runtimeType == other.runtimeType &&
    _ip >= other._ip;