addInt32 method
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;
}