putInt32 method

void putInt32 (int value)

Write an Int32 into the buffer.

Implementation

void putInt32(int value) {
  _eightBytes.setInt32(0, value, Endian.host);
  _buffer.addAll(_eightBytesAsList, 0, 4);
}