undeletePatients method

Future<List<Patient>> undeletePatients(
  1. List<StoredDocumentIdentifier> ids
)

Implementation

Future<List<Patient>> undeletePatients(List<StoredDocumentIdentifier> ids) async {
	return await CardinalSdkPlatformInterface.instance.apis.patient.tryAndRecover.undeletePatients(
		_sdkId,
		ids,
	);
}