addBool method
Adds a boolean value (1 byte).
Implementation
AtemCommandBuilder addBool(bool value) {
_buffer.addByte(value ? 1 : 0);
return this;
}
Adds a boolean value (1 byte).
AtemCommandBuilder addBool(bool value) {
_buffer.addByte(value ? 1 : 0);
return this;
}