AdaptiveRoute<T> constructor

const AdaptiveRoute<T>({
  1. bool? initial,
  2. bool? fullscreenDialog,
  3. bool? maintainState,
  4. String? name,
  5. String? path,
  6. Type? returnType,
  7. String? cupertinoPageTitle,
  8. required Type page,
  9. List<Type>? guards,
  10. List<StackedRoute>? children,
})

Implementation

const AdaptiveRoute(
    {bool? initial,
    bool? fullscreenDialog,
    bool? maintainState,
    String? name,
    String? path,
    Type? returnType,
    this.cupertinoPageTitle,
    required Type page,
    List<Type>? guards,
    List<StackedRoute>? children})
    : super(
          initial: initial,
          fullscreenDialog: fullscreenDialog,
          maintainState: maintainState,
          path: path,
          name: name,
          page: page,
          guards: guards,
          children: children);