AppWidthLimiter constructor

const AppWidthLimiter({
  1. Key? key,
  2. required Widget child,
  3. double maxWidth = 1000.0,
  4. Color? backgroundColor,
  5. double horizontalPadding = 16.0,
})

Implementation

const AppWidthLimiter({
  super.key,
  required this.child,
  this.maxWidth = 1000.0,
  this.backgroundColor,
  this.horizontalPadding = 16.0,
});