ResolvedRoute constructor

const ResolvedRoute({
  1. required String target,
  2. required String path,
  3. required String fragment,
  4. String? name,
  5. String? groupName,
  6. int? viewIndex,
  7. bool history = true,
  8. Map<String, String> params = const {},
})

Implementation

const ResolvedRoute({
  required this.target,
  required this.path,
  required this.fragment,
  this.name,
  this.groupName,
  this.viewIndex,
  this.history = true,
  this.params = const {},
});