AuthRepository constructor
- required PortalService portalService,
- required StudentQueryService studentQueryService,
- required AppDatabase database,
- required FlutterSecureStorage secureStorage,
- required bool isDemo,
- required void onSessionCreated(),
- required void onSessionDestroyed([
- 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,
});