Flutter
foundation
ReadBuffer
getUint8 method
getUint8
ReadBuffer class
Constructors
ReadBuffer
Properties
data
hasRemaining
hashCode
runtimeType
Methods
getFloat64
getFloat64List
getInt32
getInt32List
getInt64
getInt64List
getUint8
getUint8List
getUint16
getUint32
noSuchMethod
toString
Operators
operator ==
getUint8 method
int
getUint8
(
)
Reads a Uint8 from the buffer.
Implementation
int getUint8() { return data.getUint8(_position++); }