push<T extends Object?> method

Future<T?> push<T extends Object?>(
  1. String location, {
  2. Object? extra,
})

Push a URI location onto the page stack w/ optional query parameters, e.g. /family/f2/person/p1?color=blue.

See also:

  • pushReplacement which replaces the top-most page of the page stack and always use a new page key.
  • replace which replaces the top-most page of the page stack but treats it as the same page. The page key will be reused. This will preserve the state and not run any page animation.

Implementation

Future<T?> push<T extends Object?>(String location, {Object? extra}) async {
  log('pushing $location');
  return routeInformationProvider.push<T>(
    location,
    base: routerDelegate.currentConfiguration,
    extra: extra,
  );
}