scan method
- String path
path
is the file path
Here is an example:
File originalFile = File("path/to/file");
List
Implementation
static Future scan(String path) async {
if (Platform.isAndroid) {
await _channel.invokeMethod('scan', {"path": path});
}
return;
}