this function return size of any file in flutter
String? getFileSize({required File file}) { print(file.lengthSync()); return "${FileSize().getSize(file.lengthSync())}"; }