StunClient constructor

StunClient({
  1. String serverHost = defaultStunServer,
  2. int stunPort = defaultStunPort,
  3. Duration? timeout,
})

Implementation

StunClient({
  this.serverHost = defaultStunServer,
  this.stunPort = defaultStunPort,
  Duration? timeout,
}) : this.timeout = timeout ?? defaultTimeout;