pushReplacementNamed<T extends Object?, TO extends Object?> method
Replace the current route of the navigator by pushing the route named
routeName
and then disposing the previous route once the new route has
finished animating in.
Implementation
@optionalTypeArgs
Future<T?> pushReplacementNamed<T extends Object?, TO extends Object?>(
String routeName,
{TO? result,
Object? arguments}) =>
App.router.pushReplacementNamed<T, TO>(routeName,
result: result, arguments: arguments);