position property Null safety

int position

Implementation

int get position => _position;
void position=(int p)

Implementation

set position(int p) {
  if (_file == null || p == _position) {
    return;
  }
  _position = p;
  _file!.setPositionSync(p);
}