getEncryptedKeys method
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;
}