maybeCacheAll method

Future<void> maybeCacheAll()

Implementation

Future<void> maybeCacheAll() async {
  final privateKey = this.privateKey;
  if (privateKey == null) {
    throw Exception('SSSS not unlocked');
  }
  await ssss.maybeCacheAll(keyId, privateKey);
}