ontology_dart_sdk
common
Buffer
addUint8 method
addUint8
Buffer class
Constructors
Buffer
fromBytes
fromHexStr
Properties
bytes
utf8string
hashCode
runtimeType
Methods
addInt8
addInt16
addInt32
addInt64
addUint8
addUint16
addUint32
addUint64
appendBytes
grow
readUint8
readUint16
readUint32
readUint64
noSuchMethod
toString
Operators
operator ==
Static methods
random
addUint8 method
dynamic
addUint8
(
int
v
)
Implementation
addUint8(int v) { grow(); _view.setUint8(_writePos, v); _writePos += 1; }