undeletePatientById method

Future<EncryptedPatient> undeletePatientById(
  1. String sdkId,
  2. String id,
  3. String rev
)

Implementation

Future<EncryptedPatient> undeletePatientById(String sdkId, String id, String rev) async {
	final res = await _methodChannel.invokeMethod<String>(
		'PatientBasicApi.undeletePatientById',
		{
			"sdkId": sdkId,
			"id": jsonEncode(id),
			"rev": jsonEncode(rev),
		}
	);
	if (res == null) throw AssertionError("received null result from platform method undeletePatientById");
	final parsedResJson = jsonDecode(res);
	return EncryptedPatient.fromJSON(parsedResJson);
}