Readbuffer constructor

Readbuffer(
  1. Uint8List _bufferData,
  2. int? _offset
)

Creates a new Readbuffer with the given data and optional file offset.

_bufferData The binary data to read from _offset The offset in the original file where this buffer starts (optional)

Implementation

Readbuffer(this._bufferData, this._offset) : _bufferPosition = 0;