addInt8 method

AtemCommandBuilder addInt8(
  1. int value
)

Adds an int8 value.

Implementation

AtemCommandBuilder addInt8(int value) {
  _buffer.addByte(value & 0xFF);
  return this;
}