FxShellScope constructor

const FxShellScope({
  1. Key? key,
  2. required GlobalKey<ScaffoldState> scaffoldKey,
  3. required bool hasDrawer,
  4. required bool hasEndDrawer,
  5. required bool canPopShell,
  6. required bool popShell(),
  7. required Widget child,
})

Implementation

const FxShellScope({
  super.key,
  required this.scaffoldKey,
  required this.hasDrawer,
  required this.hasEndDrawer,
  required this.canPopShell,
  required this.popShell,
  required super.child,
});