detectEdgeFromGallery static method

Future<bool> detectEdgeFromGallery(
  1. String saveTo, {
  2. String androidCropTitle = "Crop",
  3. String androidCropBlackWhiteTitle = "Black White",
  4. String androidCropReset = "Reset",
})

Call this method to scan the object edge from a gallery image.

Implementation

static Future<bool> detectEdgeFromGallery(String saveTo,
    {
      String androidCropTitle = "Crop",
      String androidCropBlackWhiteTitle = "Black White",
      String androidCropReset = "Reset",
    }) async {
  return await _channel.invokeMethod('edge_detect_gallery', {
    'save_to': saveTo,
    'crop_title': androidCropTitle,
    'crop_black_white_title': androidCropBlackWhiteTitle,
    'crop_reset_title': androidCropReset,
    'from_gallery': true,
  });
}