FRouteState constructor

FRouteState({
  1. required List<HistoryObserver> historyObservers,
  2. AuthUserProfile? loggedIn,
  3. bool? isInitted,
})

Implementation

FRouteState(
    {required List<HistoryObserver> historyObservers,
    AuthUserProfile? loggedIn,
    bool? isInitted})
    : _history = RouteHistory(observers: historyObservers),
      _isInitted = false;