Converts the file size from Bytes to Kilobytes
file
Bytes
Kilobytes
static Future<int> getFileSize(File file) async { final int bytes = file.lengthSync(); return bytes ~/ 1024; }