BackdropScaffold constructor

BackdropScaffold(
  1. Widget titleAppBar,
  2. WidgetBuilder? frontWidgetBuilder,
  3. WidgetBuilder? backPanelBuilder, {
  4. Key? key,
  5. List<Widget> actions = const <Widget>[],
})

Default constructor If titleAppBar, frontWidgetBuilder, backPanelBuilder is empty this will throw an exception.

Implementation

BackdropScaffold(
  this.titleAppBar,
  this.frontWidgetBuilder,
  this.backPanelBuilder, {
  Key? key,
  this.actions = const <Widget>[],
})  : destinations = null,
      children = null,
      super(key: key);