applicationContext property

Context<TState> applicationContext
getter/setter pair

Implementation

late Context<TState> applicationContext = Context<TState>(
  initialState: widget.initialState(context),
  services: widget.services ?? const <Service>[],
  middlewares: widget.middlewares ?? Fountain.defaultMiddlewares<TState>(),
);