AdaptiveBreakpoints constructor

const AdaptiveBreakpoints({
  1. double phone = 600,
  2. double tablet = 1024,
  3. double desktop = 1440,
  4. double foldableAspectRatio = 1.1,
  5. double foldableMinWidth = 600,
  6. AdaptiveBreakpoints? landscape,
  7. bool useShortestSide = false,
})

Creates breakpoint configuration with custom values.

Implementation

const AdaptiveBreakpoints({
  this.phone = 600,
  this.tablet = 1024,
  this.desktop = 1440,
  this.foldableAspectRatio = 1.1,
  this.foldableMinWidth = 600,
  this.landscape,
  this.useShortestSide = false,
});