ThemeBreakpoints constructor

const ThemeBreakpoints({
  1. double xs = 0,
  2. double sm = 480,
  3. double md = 768,
  4. double lg = 920,
  5. double xl = 1200,
})

Implementation

const ThemeBreakpoints({
  this.xs = 0,
  this.sm = 480,
  this.md = 768,
  this.lg = 920,
  this.xl = 1200,
});