getDirectory method
void
getDirectory([
- String? path,
- FileSystemFlags? options,
- FileSystemEntryCallback? successCallback,
- ErrorCallback? errorCallback,
Implementation
void getDirectory(
[String? path,
FileSystemFlags? options,
FileSystemEntryCallback? successCallback,
ErrorCallback? errorCallback]) =>
js_util.callMethod(this, 'getDirectory', [
path,
options,
successCallback == null ? null : allowInterop(successCallback),
errorCallback == null ? null : allowInterop(errorCallback)
]);