SessionPersistenceService constructor

SessionPersistenceService({
  1. FlutterSecureStorage? storage,
  2. String storageKey = _defaultStorageKey,
})

Implementation

SessionPersistenceService({
  FlutterSecureStorage? storage,
  String storageKey = _defaultStorageKey,
})  : _storage = storage ?? const FlutterSecureStorage(),
      _storageKey = storageKey;