scanPath function

Future<String> scanPath(
  1. String path
)

Implementation

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