DBNestedNavigationIndexedStack constructor Null safety

const DBNestedNavigationIndexedStack(
  1. {required List<DBRouterDelegate> delegates,
  2. required int currentViewIndex,
  3. bool handleDelegateDispose = true,
  4. Key? key}
)

Create DBNestedNavigationIndexedStack.

Implementation

const DBNestedNavigationIndexedStack({
  required this.delegates,
  required this.currentViewIndex,
  this.handleDelegateDispose = true,
  Key? key,
}) : super(key: key);