deletePatientsByIds method

Future<List<DocIdentifier>> deletePatientsByIds(
  1. List<IdWithMandatoryRev> entityIds
)

Implementation

Future<List<DocIdentifier>> deletePatientsByIds(List<IdWithMandatoryRev> entityIds) async {
	return await CardinalSdkPlatformInterface.instance.apis.patient.deletePatientsByIds(
		_sdkId,
		entityIds,
	);
}