RouteScaffold constructor

const RouteScaffold({
  1. Key? key,
  2. required Route content,
  3. AppBar? appBar,
  4. Widget? body,
  5. bool useSafeArea = true,
})

Creates a new RouteScaffold instance.

Implementation

const RouteScaffold({
  super.key,
  required this.content,
  this.appBar,
  this.body,
  this.useSafeArea = true,
});