AppConfig constructor

AppConfig({
  1. int maxClients = 0,
  2. bool enableDynamicMaxClients = false,
  3. bool disableWebRtc = false,
  4. bool disableUdp = false,
})

Implementation

AppConfig({
    this.maxClients = 0,
    this.enableDynamicMaxClients = false,
    this.disableWebRtc = false,
    this.disableUdp = false,
});