restorablePushReplacementNamed<T extends Object?, TO extends Object?> method

  1. @optionalTypeArgs
String restorablePushReplacementNamed<T extends Object?, TO extends Object?>(
  1. String routeName, {
  2. TO? result,
  3. Object? arguments,
})

Replace the current route of the navigator that most tightly encloses the given context by pushing the route named routeName and then disposing the previous route once the new route has finished animating in.

Implementation

@optionalTypeArgs
String restorablePushReplacementNamed<T extends Object?, TO extends Object?>(
        String routeName,
        {TO? result,
        Object? arguments}) =>
    App.router.restorablePushReplacementNamed<T, TO>(routeName,
        result: result, arguments: arguments);