length property
文件时长
Implementation
Future<int> get length async {
if (_length == null) {
_length = await _file.length();
}
return _length;
}
文件时长
Future<int> get length async {
if (_length == null) {
_length = await _file.length();
}
return _length;
}