addInt32 method

AtemCommandBuilder addInt32(
  1. int value
)

Adds an int32 value (big endian).

Implementation

AtemCommandBuilder addInt32(int value) {
  _buffer.addByte((value >> 24) & 0xFF);
  _buffer.addByte((value >> 16) & 0xFF);
  _buffer.addByte((value >> 8) & 0xFF);
  _buffer.addByte(value & 0xFF);
  return this;
}