setDownloadFilePath static method

dynamic setDownloadFilePath()

Implementation

static setDownloadFilePath() async {
  if (Platform.isIOS) {
    fileDownloadPath = (await getTemporaryDirectory()).path;
  } else {
    fileDownloadPath = (await getExternalStorageDirectory())!.path;
  }
}