decryptPatientIdOf method
Implementation
Future<Set<String>> decryptPatientIdOf(String sdkId, Document document) async {
final res = await _methodChannel.invokeMethod<String>(
'DocumentApi.decryptPatientIdOf',
{
"sdkId": sdkId,
"document": jsonEncode(Document.encode(document)),
}
);
if (res == null) throw AssertionError("received null result from platform method decryptPatientIdOf");
final parsedResJson = jsonDecode(res);
return (parsedResJson as List<dynamic>).map((x1) => (x1 as String) ).toSet();
}