menu
pure_dart_quic package
documentation
buffer.dart
QuicBuffer
pullUint24 method
pullUint24 method
dark_mode
light_mode
pullUint24
method
int
pullUint24
(
)
Implementation
int pullUint24() { final h = pullUint8(); final l = pullUint16(); return (h << 16) | l; }
pure_dart_quic package
documentation
buffer
QuicBuffer
pullUint24 method
QuicBuffer class