getFile method

void getFile([
  1. String? path,
  2. FileSystemFlags? options,
  3. FileSystemEntryCallback? successCallback,
  4. ErrorCallback? errorCallback,
])

Implementation

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