MiniPageScaffold constructor

const MiniPageScaffold({
  1. Key? key,
  2. required Widget body,
  3. MiniAppBar? appBar,
  4. Widget? bottomBar,
  5. Color? backgroundColor,
})

Implementation

const MiniPageScaffold({
  super.key,
  required this.body,
  this.appBar,
  this.bottomBar,
  this.backgroundColor,
});