deleteClassifications method

Future<List<DocIdentifier>> deleteClassifications(
  1. List<String> entityIds
)

Implementation

Future<List<DocIdentifier>> deleteClassifications(List<String> entityIds) async {
	return await CardinalSdkPlatformInterface.instance.apis.classification.deleteClassifications(
		_sdkId,
		entityIds,
	);
}