StackedRoute<T> constructor

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

Implementation

const StackedRoute(
    {required this.page,
    this.initial,
    this.guards,
    this.fullscreenDialog,
    this.maintainState,
    this.path,
    this.name,
    this.children});