replaceParameters method
Implementation
void replaceParameters(Object? arguments) {
final route = this.route;
if (route != null) {
final index = treeBranch.indexOf(route);
treeBranch[index] = route.copy(parameters: parameters);
}
}
void replaceParameters(Object? arguments) {
final route = this.route;
if (route != null) {
final index = treeBranch.indexOf(route);
treeBranch[index] = route.copy(parameters: parameters);
}
}