addInt8 method
Adds an int8 value.
Implementation
AtemCommandBuilder addInt8(int value) {
_buffer.addByte(value & 0xFF);
return this;
}
Adds an int8 value.
AtemCommandBuilder addInt8(int value) {
_buffer.addByte(value & 0xFF);
return this;
}