bytes method

Uint8List bytes()

Implementation

Uint8List bytes() {
  Uint8List tape = Uint8List(offset);
  for (int i = 0; i < offset; i = i + 1) {
    tape[i] = _buffer.getUint8(i);
  }
  return tape;
}