operator > method

bool operator >(
  1. Object other
)

Implementation

bool operator >(Object other) {
  return (other is num && value > other) ||
      (other is Breakpoint && value > other.value);
}