PageBody constructor

const PageBody({
  1. required List<Component> children,
  2. double maxWidth = 1200,
  3. EdgeInsets? padding,
  4. Key? key,
})

Implementation

const PageBody({
  required this.children,
  this.maxWidth = 1200,
  this.padding,
  super.key,
});