putInt32 method
Write an Int32 into the buffer.
Implementation
void putInt32(int value) {
_eightBytes.setInt32(0, value, Endian.host);
_buffer.addAll(_eightBytesAsList, 0, 4);
}
Write an Int32 into the buffer.
void putInt32(int value) {
_eightBytes.setInt32(0, value, Endian.host);
_buffer.addAll(_eightBytesAsList, 0, 4);
}