AuthRepository constructor

AuthRepository({
  1. required PortalService portalService,
  2. required StudentQueryService studentQueryService,
  3. required AppDatabase database,
  4. required FlutterSecureStorage secureStorage,
  5. required bool isDemo,
  6. required void onSessionCreated(),
  7. required void onSessionDestroyed([
    1. LoginException? exception
    ]),
})

Implementation

AuthRepository({
  required this._portalService,
  required this._studentQueryService,
  required this._database,
  required this._secureStorage,
  required this._isDemo,
  required this._onSessionCreated,
  required this._onSessionDestroyed,
});