FileHandle constructor Null safety
- String _path
Implementation
FileHandle(this._path)
: _file = File(_path).openSync()
, _position = 0 {
_length = _file!.lengthSync();
}
FileHandle(this._path)
: _file = File(_path).openSync()
, _position = 0 {
_length = _file!.lengthSync();
}