serialize method

  1. @override
Uint8List serialize()
override

Encode this instruction into a byte sequence.

Implementation

@override
Uint8List serialize() {
  // T = 00, so the upper two bits are already zero.
  return QpackInteger.encode(increment, 6);
}