TestRoute constructor

TestRoute(
  1. String name, {
  2. String? path,
  3. List<AutoRoute>? children,
  4. bool fullMatch = false,
  5. RestorationIdBuilder? restorationId,
  6. bool initial = false,
})

Default constructor

Implementation

TestRoute(
  String name, {
  super.path,
  super.children,
  super.fullMatch,
  super.restorationId,
  super.initial,
}) : super._(name: name);