cropImage method

Future<String?> cropImage(
  1. String sourcePath
)

Launch native image cropper for the given image path. Returns the cropped image path.

Implementation

Future<String?> cropImage(String sourcePath) {
  return OcrPlatform.instance.cropImage(sourcePath);
}