ScreenSizeBreakpoints constructor

const ScreenSizeBreakpoints({
  1. double xs = 360,
  2. double sm = 600,
  3. double md = 900,
  4. double lg = 1200,
})

Creates screen size breakpoints with custom values.

Implementation

const ScreenSizeBreakpoints({
  this.xs = 360,
  this.sm = 600,
  this.md = 900,
  this.lg = 1200,
});