serialize method

  1. @override
Uint8List serialize()
override

Serialize this instruction to bytes.

Implementation

@override
Uint8List serialize() {
  final capBytes = QpackInteger.encode(capacity, 5);
  capBytes[0] |= 0x20; // instruction prefix '001'
  return capBytes;
}