push method

void push(
  1. String path, {
  2. Map<String, String> pathParams = const {},
  3. Map<String, String> queryParams = const {},
})

Go to the next page

Implementation

void push(
  String path, {
  Map<String, String> pathParams = const {},
  Map<String, String> queryParams = const {},
}) {
  final notifier = getNavShellNotifier(shellPath);
  notifier.push(
    path,
    pathParams: pathParams,
    queryParams: queryParams,
  );
}