replaceArguments method
Implementation
void replaceArguments(Object? arguments) {
final _route = route;
if (_route != null) {
final index = currentTreeBranch.indexOf(_route);
currentTreeBranch[index] = _route.copy(arguments: arguments);
}
}