forward method

Uint8List forward (int cnt)

Implementation

Uint8List forward(int cnt) {
  Uint8List sub = buf._buf.sublist(ofst, ofst + cnt);
  ofst += cnt;
  return sub;
}