RegConfig constructor

RegConfig({
  1. String? domain,
  2. int? videoLimit,
  3. int? audioLimit,
  4. int? recallTime,
  5. int? privateTime,
  6. String? xmppDomain,
  7. String? xmppHost,
  8. int? xmppPort,
  9. String? adminUser,
  10. String? googleTranslate,
  11. String? signalServerDomain,
  12. String? notificationHelpUrl,
  13. dynamic sdkUrl,
  14. int? pinExpireDays,
  15. int? pinTimeOut,
  16. int? fileSizeLimit,
  17. required List<String> stuns,
  18. required List<Turn> turns,
  19. String? liveStreamingSignalServer,
  20. bool? isLiveStreamingEnabled,
  21. bool? sipcallEnabled,
  22. String? sipServer,
  23. String? callRoutingServer,
  24. String? chatBackupType,
  25. String? chatBackupFrequency,
  26. String? xmppPortWeb,
  27. String? iv,
  28. String? ivProfile,
})

Implementation

RegConfig({
  this.domain,
  this.videoLimit,
  this.audioLimit,
  this.recallTime,
  this.privateTime,
  this.xmppDomain,
  this.xmppHost,
  this.xmppPort,
  this.adminUser,
  this.googleTranslate,
  this.signalServerDomain,
  this.notificationHelpUrl,
  this.sdkUrl,
  this.pinExpireDays,
  this.pinTimeOut,
  this.fileSizeLimit,
  required this.stuns,
  required this.turns,
  this.liveStreamingSignalServer,
  this.isLiveStreamingEnabled,
  this.sipcallEnabled,
  this.sipServer,
  this.callRoutingServer,
  this.chatBackupType,
  this.chatBackupFrequency,
  this.xmppPortWeb,
  this.iv,
  this.ivProfile,
});