isLargerOrEqualTo method

bool isLargerOrEqualTo(
  1. BreakpointId other
)

Checks if the current active breakpoint is larger than or equal to the other breakpoint.

Implementation

bool isLargerOrEqualTo(BreakpointId other) {
  return activeBreakpointId.isLargerOrEqualTo(other);
}