RecordTimeLineData constructor

RecordTimeLineData(
  1. Uint8List data,
  2. int offset
)

Implementation

RecordTimeLineData(Uint8List data, int offset) {
  this.bytes = ByteData.view(data.buffer, offset);
  this.data = data;
  this.bytesOffset = offset;
  this.offset = 0;
}