BaseScaffold constructor

const BaseScaffold({
  1. Key? key,
  2. PreferredSizeWidget? appBar,
  3. String title = 'Title',
  4. required Widget body,
  5. bool? withBack,
})

Implementation

const BaseScaffold({
  super.key,
  this.appBar,
  this.title = 'Title',
  required this.body,
  this.withBack,
});