(String url, String fileName, boolean showProgress)
| 1965 | /// |
| 1966 | /// true on success false on error |
| 1967 | public static boolean downloadUrlToFile(String url, String fileName, boolean showProgress) { |
| 1968 | return downloadUrlTo(url, fileName, showProgress, false, false, null); |
| 1969 | } |
| 1970 | |
| 1971 | /// Non-blocking method that will download the given URL to storage in the background and return |
| 1972 | /// immediately. This method can be used to fetch data dynamically and asynchronously e.g. in this code it is used |
no test coverage detected