PageScaffold constructor

const PageScaffold({
  1. Key? key,
  2. required String title,
  3. required Widget body,
  4. bool padding = false,
  5. bool showLog = false,
})

Implementation

const PageScaffold({
  Key? key,
  required this.title,
  required this.body,
  this.padding = false,
  this.showLog = false,
}) : super(key: key);