ScaffoldWithNavBar constructor

const ScaffoldWithNavBar({
  1. required StatefulNavigationShell navigationShell,
  2. Key? key,
})

Constructs an ScaffoldWithNavBar.

Implementation

const ScaffoldWithNavBar({
  required this.navigationShell,
  Key? key,
}) : super(key: key ?? const ValueKey<String>('ScaffoldWithNavBar'));