isDirectory method

  1. @override
Future<bool?> isDirectory(
  1. String url, {
  2. bool scoped = true,
})
override

Implementation

@override
Future<bool?> isDirectory(String url, {bool scoped = true}) async {
  return await methodChannel.invokeMethod<bool>(
      'isDirectory', {'url': url.toString(), 'scoped': scoped});
}