InheritedNavigatorNode constructor

const InheritedNavigatorNode({
  1. required NavigatorNode node,
  2. required Widget child,
  3. Key? key,
})

Implementation

const InheritedNavigatorNode({
  required this.node,
  required super.child,
  super.key,
});