AtemCommand.from constructor

AtemCommand.from(
  1. String code,
  2. Uint8List buildData()
)

Creates a command from a code and typed data builder.

Implementation

factory AtemCommand.from(String code, Uint8List Function() buildData) {
  return _AtemCommandImpl(code, buildData());
}