putUint32 method
Write a Uint32 into the buffer.
Implementation
void putUint32(int value) {
_eightBytes.setUint32(0, value, Endian.host);
_buffer.addAll(_eightBytesAsList, 0, 4);
}
Write a Uint32 into the buffer.
void putUint32(int value) {
_eightBytes.setUint32(0, value, Endian.host);
_buffer.addAll(_eightBytesAsList, 0, 4);
}