Flutter
foundation
WriteBuffer
putUint8 method
putUint8
WriteBuffer class
Constructors
WriteBuffer
Properties
hashCode
runtimeType
Methods
done
putFloat64
putFloat64List
putInt32
putInt32List
putInt64
putInt64List
putUint8
putUint8List
putUint16
putUint32
noSuchMethod
toString
Operators
operator ==
putUint8 method
void
putUint8
(
int
byte
)
Write a Uint8 into the buffer.
Implementation
void putUint8(int byte) { _buffer.add(byte); }