addBytes method

AtemCommandBuilder addBytes(
  1. Uint8List bytes
)

Adds raw bytes.

Implementation

AtemCommandBuilder addBytes(Uint8List bytes) {
  _buffer.add(bytes);
  return this;
}