Returns the byte length of the file.
Example:
final size = await file.length; print(size);
Future<int> get length async => _knownLength ?? (await _cachedBytes).length;