getEncryptedKeys method

Future<Map<String, String?>> getEncryptedKeys(
  1. String atsign
)

Implementation

Future<Map<String, String?>> getEncryptedKeys(String atsign) async {
  Map<String, String?> result =
      await atClientServiceMap[atsign]!.getEncryptedKeys(atsign);
  result[atsign] = await this.getAESKey(atsign);
  return result;
}