NavigatorObserverOnReplacedCallback typedef

NavigatorObserverOnReplacedCallback = void Function(Route? route, Route? previousRoute)

Signature for a function that receives NavigatorObserver.didReplace notifications.

See also:

Implementation

typedef NavigatorObserverOnReplacedCallback = void Function(
  Route<dynamic>? route,
  Route<dynamic>? previousRoute,
);