FileReaderRandom constructor

FileReaderRandom(
  1. File _file
)

Implementation

FileReaderRandom(this._file) {
  channel = _file.openSync();
  _isOpen = true;
}