length property

Future<int> length

文件时长

Implementation

Future<int> get length async {
  if (_length == null) {
    _length = await _file.length();
  }
  return _length;
}