BridgeConfig constructor

BridgeConfig({
  1. bool enabled = false,
  2. bool explicit = false,
  3. bool outboundOnly = false,
  4. String? initialName,
  5. bool connected = false,
  6. bool sessionActive = false,
  7. String? sessionUrl,
  8. String? connectUrl,
})

Implementation

BridgeConfig({
  this.enabled = false,
  this.explicit = false,
  this.outboundOnly = false,
  this.initialName,
  this.connected = false,
  this.sessionActive = false,
  this.sessionUrl,
  this.connectUrl,
});