storeSSSSCache method

  1. @override
Future<void> storeSSSSCache(
  1. String type,
  2. String keyId,
  3. String ciphertext,
  4. String content,
)
override

Implementation

@override
Future<void> storeSSSSCache(
    String type, String keyId, String ciphertext, String content) async {
  await _ssssCacheBox.put(
      type,
      SSSSCache(
        type: type,
        keyId: keyId,
        ciphertext: ciphertext,
        content: content,
      ).toJson());
}