detectLabels method

TransformationData detectLabels(
  1. int? maximumLabels
)

Method for Detect content and text in images

Implementation

TransformationData detectLabels(
  int? maximumLabels,
) {
  var values = <String, String>{};
  if (maximumLabels != null) {
    values['l'] = maximumLabels.toString();
  }
  return TransformationData(
      plugin: 'googleVis', name: 'detectLabels', values: values);
}