BaseScaffold constructor
const
BaseScaffold({
- Key? key,
- PreferredSizeWidget? appBar,
- String title = 'Title',
- required Widget body,
- bool? withBack,
Implementation
const BaseScaffold({
super.key,
this.appBar,
this.title = 'Title',
required this.body,
this.withBack,
});