AutoRoute<T> constructor

const AutoRoute<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<AutoRoute>? children,
  11. Map<String, dynamic> meta = const {},
})

Implementation

const AutoRoute({
  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 {},
});