skip method
Implementation
skip(type, int? amount) {
if (amount == null) {
amount = 1;
}
this.relativeOffset += typeOffsets[type]! * amount;
}
skip(type, int? amount) {
if (amount == null) {
amount = 1;
}
this.relativeOffset += typeOffsets[type]! * amount;
}