SecureStorageRepositoryImpl constructor

SecureStorageRepositoryImpl({
  1. String key = StorageRepositoryKeys.defaultSecureBoxKey,
  2. String logPrefix = StorageRepositoryKeys.defaultSecureStorageRepositoryImplLogPrefix,
})

Constructor for SecureStorageRepositoryImpl.

  • key: The key used to access the secure storage box.
  • logPrefix: A prefix for log messages related to secure storage operations.

Implementation

SecureStorageRepositoryImpl({
  super.key = StorageRepositoryKeys.defaultSecureBoxKey,
  super.logPrefix =
      StorageRepositoryKeys.defaultSecureStorageRepositoryImplLogPrefix,
});