isSmallerOrEqualTo method

bool isSmallerOrEqualTo(
  1. BreakpointId other
)

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

Implementation

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