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