ScaffoldBoxConstraints constructor

const ScaffoldBoxConstraints({
  1. required double headerHeight,
  2. required double footerHeight,
  3. double minWidth = 0.0,
  4. double maxWidth = double.infinity,
  5. double minHeight = 0.0,
  6. double maxHeight = double.infinity,
})

Implementation

const ScaffoldBoxConstraints({
  required this.headerHeight,
  required this.footerHeight,
  super.minWidth,
  super.maxWidth,
  super.minHeight,
  super.maxHeight,
});