getDownLoadLength static method

Future<int?> getDownLoadLength(
  1. String url
)

Implementation

static Future<int?> getDownLoadLength(String url) {
  if (isYoutubeUrl(url)) {
    return getYoutubeDownLoadLength(url);
  } else {
    return ModernFormDownloadHelper.getDownLoadLength(url);
  }
}