NestedNavigatorContainer constructor

const NestedNavigatorContainer({
  1. Key? key,
  2. GlobalKey<NavigatorState>? navigatorKey,
  3. required NavigatorState? parent,
  4. required Navigator? child,
  5. ScrollController? scroller,
})

Implementation

const NestedNavigatorContainer(
    {Key? key,
    this.navigatorKey,
    required this.parent,
    required this.child,
    this.scroller})
    : super(key: key);