detect method

Future<List<DetectionResult>> detect({
  1. required String imagePath,
})

Run detection on an image file.

Implementation

Future<List<DetectionResult>> detect({required String imagePath}) {
  throw UnimplementedError('detect() has not been implemented.');
}