AdaptiveRoute<T> constructor

const AdaptiveRoute<T>({
  1. bool initial = false,
  2. bool fullscreenDialog = false,
  3. bool maintainState = true,
  4. String? name,
  5. String? path,
  6. bool usesPathAsKey = false,
  7. bool fullMatch = false,
  8. String? cupertinoPageTitle,
  9. required Type page,
  10. List<Type>? guards,
  11. List<AutoRoute>? children,
  12. Map<String, dynamic> meta = const {},
})

Implementation

const AdaptiveRoute({
  bool initial = false,
  bool fullscreenDialog = false,
  bool maintainState = true,
  String? name,
  String? path,
  bool usesPathAsKey = false,
  bool fullMatch = false,
  this.cupertinoPageTitle,
  required Type page,
  List<Type>? guards,
  List<AutoRoute>? children,
  Map<String, dynamic> meta = const {},
}) : super(
        initial: initial,
        fullscreenDialog: fullscreenDialog,
        maintainState: maintainState,
        path: path,
        usesPathAsKey: usesPathAsKey,
        name: name,
        fullMatch: fullMatch,
        page: page,
        guards: guards,
        children: children,
        meta: meta,
      );