BackdropScaffold.navigation constructor

BackdropScaffold.navigation(
  1. Widget titleAppBar,
  2. List? destinations,
  3. List<Widget>? children, {
  4. Key? key,
})

Constructor navigation for navigation mode. destinations is required argument. If destinations is empty this will throw an exception. If actions is empty this will not throw an exception.

Implementation

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