vision property

Future<Vision> vision

Integrates Google Vision features, including image labeling, face, logo, and landmark detection, optical character recognition (OCR), and detection of explicit content, into applications.

Implementation

Future<Vision> get vision async {
  await _confirmToken();

  return Vision(_token!, dio);
}