development static method

TxServerConfiguration development()

Creates a development server configuration with default development values.

Uses:

  • Host: rtcdev.telnyx.com
  • TURN: turndev.telnyx.com
  • STUN: stundev.telnyx.com

Implementation

static TxServerConfiguration development() => const TxServerConfiguration(
      host: DefaultConfig.telnyxDevHostAddress,
      port: DefaultConfig.telnyxPort,
      turn: DefaultConfig.devTurn,
      stun: DefaultConfig.devStun,
    );