📜  如何在颤振中获取文件高度和宽度 - Dart 代码示例

📅  最后修改于: 2022-03-11 14:48:03.789000             🧑  作者: Mango

代码示例2
final file = File('pickedVid.mp4');            
int sizeInBytes = file.lengthSync();
double sizeInMb = sizeInBytes / (1024 * 1024);
if (sizeInMb > 10){
    // This file is Longer the
}