pushNamedAndRemoveAll method

  1. @override
void pushNamedAndRemoveAll(
  1. String route, {
  2. Object? arguments,
})
override

Adds a route into the navigation stack and removes everything else

Implementation

@override
void pushNamedAndRemoveAll(
  String route, {
  Object? arguments,
}) =>
    dispatch!(
        NavigateAction.pushNamedAndRemoveAll(route, arguments: arguments));