isSmallerThan method

bool isSmallerThan(
  1. BreakpointId other
)

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

Implementation

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