decryptPatientIdOf method

Future<Set<String>> decryptPatientIdOf(
  1. String sdkId,
  2. AccessLog accessLog
)

Implementation

Future<Set<String>> decryptPatientIdOf(String sdkId, AccessLog accessLog) async {
	final res = await _methodChannel.invokeMethod<String>(
		'AccessLogApi.decryptPatientIdOf',
		{
			"sdkId": sdkId,
			"accessLog": jsonEncode(AccessLog.encode(accessLog)),
		}
	);
	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();
}