getKey method

SecretStorageKeyContent? getKey(
  1. String keyId
)

Implementation

SecretStorageKeyContent? getKey(String keyId) {
  return client.accountData[EventTypes.secretStorageKey(keyId)]
      ?.parsedSecretStorageKeyContent;
}