PageWidget constructor

const PageWidget(
  1. {Key? key,
  2. Widget? header,
  3. required Widget body,
  4. Widget? footer,
  5. Color color = Colors.white,
  6. double spacing = 0}
)

Implementation

const PageWidget({
  super.key,
  this.header,
  required this.body,
  this.footer,
  this.color = Colors.white,
  this.spacing = 0,
});