scanPath method

Future<String> scanPath(
  1. String path
)

Scanning the image of the specified path

Implementation

Future<String> scanPath(String path) async {
  assert(path.isNotEmpty);
  return await channel.invokeMethod('scan_path', {"path": path});
}