ResponsiveBreakpoints constructor

const ResponsiveBreakpoints({
  1. double mobile = 0,
  2. double tablet = 600,
  3. double desktop = 1200,
  4. Map<String, double>? custom,
})

Implementation

const ResponsiveBreakpoints({
  this.mobile = 0,
  this.tablet = 600,
  this.desktop = 1200,
  this.custom,
});