onDidPopAppRoute method

  1. @override
void onDidPopAppRoute(
  1. AppRoute route
)
override

Notify the router that the given app route was popped.

Implementation

@override
void onDidPopAppRoute(AppRoute route) {
  final newConfiguration = currentConfiguration.withPoppedRoute(route);
  _currentConfiguration = newConfiguration;
}