smaller property

LayoutBreakpoint? smaller

Implementation

LayoutBreakpoint? get smaller {
  return {
    LayoutBreakpoint.xs: null,
    LayoutBreakpoint.sm: LayoutBreakpoint.xs,
    LayoutBreakpoint.md: LayoutBreakpoint.sm,
    LayoutBreakpoint.lg: LayoutBreakpoint.md,
    LayoutBreakpoint.xl: LayoutBreakpoint.lg
  }[this];
}