skip method

dynamic skip(
  1. dynamic type,
  2. int? amount
)

Implementation

skip(type, int? amount) {
  if (amount == null) {
      amount = 1;
  }

  this.relativeOffset += typeOffsets[type]! * amount;
}