put abstract method

  1. @override
Future<void> put(
  1. String key,
  2. T value, {
  3. VaultEntryDelegate<T>? delegate,
})
override

Add / Replace the vault value for the specified key.

  • key: the key
  • value: the value
  • delegate: provides the caller a way of changing the VaultEntry before persistence

Implementation

@override
Future<void> put(String key, T value, {VaultEntryDelegate<T>? delegate});