FileHandle constructor Null safety

FileHandle(
  1. String _path
)

Implementation

FileHandle(this._path)
: _file = File(_path).openSync()
, _position = 0 {
  _length = _file!.lengthSync();
}