Breakpoint.mediumLarge constructor

const Breakpoint.mediumLarge({
  1. bool andUp = false,
  2. Set<TargetPlatform>? platform,
})

Returns a Breakpoint with the given constraints for a mediumLarge screen.

Implementation

const Breakpoint.mediumLarge({this.andUp = false, this.platform})
    : beginWidth = 840,
      endWidth = 1200,
      beginHeight = 900,
      endHeight = null,
      spacing = kMaterialMediumAndUpSpacing,
      margin = kMaterialMediumAndUpMargin,
      padding = kMaterialPadding * 3,
      recommendedPanes = 2,
      maxPanes = 2;