GoRouterRefreshStream constructor

GoRouterRefreshStream(
  1. Stream stream
)

Implementation

GoRouterRefreshStream(Stream<dynamic> stream) {
  notifyListeners();
  _subscription = stream.asBroadcastStream().listen((_) => notifyListeners());
}