StackedRoute<T> constructor

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

Implementation

const StackedRoute({
  this.page,
  this.initial = false,
  this.guards,
  this.fullscreenDialog = false,
  this.maintainState = true,
  this.fullMatch = false,
  this.path,
  this.name,
  this.usesPathAsKey = false,
  this.children,
  this.meta = const {},
  this.deferredLoading,
});