getConfidentialSecretIdsOf method

Future<Set<String>> getConfidentialSecretIdsOf(
  1. String sdkId,
  2. Patient patient
)

Implementation

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