getDirectory method

void getDirectory([
  1. String? path,
  2. FileSystemFlags? options,
  3. FileSystemEntryCallback? successCallback,
  4. 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)
    ]);