ResponsiveGridBreakpoints constructor
ResponsiveGridBreakpoints({})
Creates a new instance of ResponsiveGridBreakpoints.
The default values for the breakpoints are:
xs
: 576sm
: 768md
: 992lg
: 1200xl
: 1400xxl
: double.infinity
Implementation
ResponsiveGridBreakpoints({
this.xs = 576,
this.sm = 768,
this.md = 992,
this.lg = 1200,
this.xl = 1400,
this.xxl = double.infinity,
});