isLargerThan method

bool isLargerThan(
  1. BreakpointId other
)

Checks if the current active breakpoint is larger than the other breakpoint.

Implementation

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