AuthController constructor

AuthController(
  1. OmnyShellService _service,
  2. SettingsStore _settings
)

Creates a controller.

Implementation

AuthController(this._service, this._settings)
  : state = Observable(const AuthSnapshot.signedOut()) {
  _service.onConnectionLost = _onConnectionLost;
}