getFile method
void
getFile([
- String? path,
- FileSystemFlags? options,
- FileSystemEntryCallback? successCallback,
- 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)
]);