NavBarScreenModel constructor

const NavBarScreenModel({
  1. required Widget builder(
    1. BuildContext context
    ),
  2. PreferredSizeWidget? appBar,
  3. Widget? fab,
  4. FloatingActionButtonLocation? fabLocation,
  5. GlobalKey<NavigatorState>? navigatorKey,
  6. Future<bool> onWillPop()?,
})

Implementation

const NavBarScreenModel({
  required this.builder,
  this.appBar,
  this.fab,
  this.fabLocation,
  this.navigatorKey,
  this.onWillPop,
});