KitePage constructor

const KitePage({
  1. required Widget child,
  2. double maxWidth = 1280,
  3. EdgeInsetsGeometry? padding,
  4. bool scrollable = true,
  5. Key? key,
})

Implementation

const KitePage({
  required this.child,
  this.maxWidth = 1280,
  this.padding,
  this.scrollable = true,
  super.key,
}) : assert(maxWidth > 0, 'maxWidth must be greater than zero.');