takePhoto method

Future<String?> takePhoto(
  1. String savePath
)

Take a photo and save to savePath. Returns the saved file path.

Implementation

Future<String?> takePhoto(String savePath) {
  return OcrPlatform.instance.takePhoto(savePath);
}