FlutlyPage constructor

FlutlyPage({
  1. required String name,
  2. required String path,
  3. required Widget page,
  4. FutureOr<bool> onExit(
    1. BuildContext,
    2. GoRouterState
    )?,
})

Implementation

FlutlyPage({
  required this.name,
  required this.path,
  required this.page,
  this.onExit,
});