pushReplacement<T extends Object?> method
Replaces the top-most page of the page stack with the given URL location
w/ optional query parameters, e.g. /family/f2/person/p1?color=blue
.
See also:
Implementation
Future<T?> pushReplacement<T extends Object?>(String location,
{Object? extra}) {
log('pushReplacement $location');
return routeInformationProvider.pushReplacement<T>(
location,
base: routerDelegate.currentConfiguration,
extra: extra,
);
}