ResponsiveGridBreakpoints constructor

ResponsiveGridBreakpoints({
  1. double xs = 576,
  2. double sm = 768,
  3. double md = 992,
  4. double lg = 1200,
  5. double xl = double.infinity,
})

Implementation

ResponsiveGridBreakpoints({
  this.xs = 576,
  this.sm = 768,
  this.md = 992,
  this.lg = 1200,
  this.xl = double.infinity,
});