getClassifications method

Future<List<DecryptedClassification>> getClassifications(
  1. List<String> entityIds
)

Implementation

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