TxServerConfiguration constructor

const TxServerConfiguration({
  1. String host = DefaultConfig.telnyxProdHostAddress,
  2. int port = DefaultConfig.telnyxPort,
  3. String turn = DefaultConfig.defaultTurn,
  4. String stun = DefaultConfig.defaultStun,
})

Creates a server configuration with the specified parameters.

Implementation

const TxServerConfiguration({
  this.host = DefaultConfig.telnyxProdHostAddress,
  this.port = DefaultConfig.telnyxPort,
  this.turn = DefaultConfig.defaultTurn,
  this.stun = DefaultConfig.defaultStun,
});