detectEdgeFromGallery static method
Call this method to scan the object edge from a gallery image.
Implementation
static Future<bool> detectEdgeFromGallery(
String saveTo, {
String? androidCropTitle,
String androidCropBlackWhiteTitle = "Black White",
String androidCropReset = "Reset",
String? scanFrameBorderColor,
String? scanFrameBodyColor,
double? scanFrameThickness,
}) 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,
'scan_frame_border_color': scanFrameBorderColor,
'scan_frame_body_color': scanFrameBodyColor,
'scan_frame_thickness': scanFrameThickness,
});
}