getEncryptedKeys method
Implementation
Future<Map<String, String>> getEncryptedKeys(String atsign) async {
var result;
try {
result = await atClientService.getEncryptedKeys(atsign);
result[atsign] = await this._getAESKey(atsign);
} catch (e) {
result = {};
}
return result;
}