NavigatorPageNotify constructor

const NavigatorPageNotify({
  1. Key? key,
  2. required String name,
  3. required NavigatorParamsCallback onPageNotify,
  4. dynamic initialParams,
  5. required Widget child,
})

Implementation

const NavigatorPageNotify({
  Key? key,
  required this.name,
  required this.onPageNotify,
  this.initialParams,
  required this.child,
}) : super(key: key);