AtemConnectionConfig constructor

const AtemConnectionConfig({
  1. String host = '192.168.1.10',
  2. int port = 9910,
  3. Duration timeout = const Duration(seconds: 5),
  4. Duration keepAliveInterval = const Duration(seconds: 1),
  5. bool reconnect = false,
  6. Duration reconnectInterval = const Duration(seconds: 5),
})

Implementation

const AtemConnectionConfig({
  this.host = '192.168.1.10',
  this.port = 9910,
  this.timeout = const Duration(seconds: 5),
  this.keepAliveInterval = const Duration(seconds: 1),
  this.reconnect = false,
  this.reconnectInterval = const Duration(seconds: 5),
});