undeletePatients method

Future<List<EncryptedPatient>> undeletePatients(
  1. List<IdWithMandatoryRev> ids
)

Implementation

Future<List<EncryptedPatient>> undeletePatients(List<IdWithMandatoryRev> ids) async {
	return await CardinalSdkPlatformInterface.instance.apis.patient.encrypted.undeletePatients(
		_sdkId,
		ids,
	);
}