popInitialPacket method

Uint8List? popInitialPacket(
  1. int streamId
)

Retrieves and removes the initial buffered packet for a stream.

Implementation

Uint8List? popInitialPacket(int streamId) {
  return _initialPacketBuffer.remove(streamId);
}