detectEdge static method

Future<bool> detectEdge(
  1. String saveTo, {
  2. bool canUseGallery = true,
  3. String androidScanTitle = "Scanning",
  4. String androidCropTitle = "Crop",
  5. String androidCropBlackWhiteTitle = "Black White",
  6. String androidCropReset = "Reset",
})

Call this method to scan the object edge in live camera.

Implementation

static Future<bool> detectEdge(String saveTo,
    {
      bool canUseGallery = true,
      String androidScanTitle = "Scanning",
      String androidCropTitle = "Crop",
      String androidCropBlackWhiteTitle = "Black White",
      String androidCropReset = "Reset",
    }) async {
  return await _channel.invokeMethod('edge_detect', {
    'save_to': saveTo,
    'can_use_gallery': canUseGallery,
    'scan_title': androidScanTitle,
    'crop_title': androidCropTitle,
    'crop_black_white_title': androidCropBlackWhiteTitle,
    'crop_reset_title': androidCropReset,
  });
}