How to get file size from URL (in Flutter)? I am able to get it by using:
http.Response response = await http.get(url);
print(response.contentLength);
But that downloads the entire file. Is it possible to get the file size without entirely downloading it? Thanks