activeBreakpointOf static method

Breakpoint activeBreakpointOf(
  1. BuildContext context
)

Returns the currently active Breakpoint.

Implementation

static Breakpoint activeBreakpointOf(BuildContext context) {
  return maybeActiveBreakpointFromSlotLayout(context) ??
      defaultBreakpointOf(context);
}