getStored method

Future<String> getStored(
  1. String type
)

Implementation

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