breakpointStyles property

Map<Breakpoint, DartStyle> get breakpointStyles

Responsive styles keyed by their breakpoint.

Implementation

Map<Breakpoint, DartStyle> get breakpointStyles => {
      if (sm != null) Breakpoint.sm: sm!,
      if (md != null) Breakpoint.md: md!,
      if (lg != null) Breakpoint.lg: lg!,
      if (xl != null) Breakpoint.xl: xl!,
    };