parseByteList method

dynamic parseByteList(
  1. int count
)

Implementation

parseByteList(int count) {
    var list = List<int>.filled(count, 0);
    var dataView = this.data;
    var offset = this.offset + this.relativeOffset;
    for (var i = 0; i < count; i++) {
        list[i] = dataView.getUint8(offset++);
    }

    this.relativeOffset += count;
    return list;
}