QpackStaticTable class

QPACK static table per RFC 9204 Appendix A.

Constructors

QpackStaticTable()
Creates a QPACK static table helper (all members are static).

Properties

hashCode → int
The hash code for this object.
no setterinherited
runtimeType → Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() → String
A string representation of this object.
inherited

Operators

operator ==(Object other) → bool
The equality operator.
inherited

Static Properties

length → int
Total number of entries.
no setter

Static Methods

findIndex(String name, [String? value]) → int?
Find the index of a name (with optional value). Returns the 0-based index if found, null otherwise.
get(int index) → QpackStaticTableEntry?
Look up an entry by index (0-based per RFC 9204 Section 3.1).

Constants

entries → const List<QpackStaticTableEntry>
All static table entries in RFC 9204 Appendix A order.