Config constructor

Config({
  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. String? sdkUrl,
  14. int? pinExpireDays,
  15. int? pinTimeOut,
  16. int? fileSizeLimit,
  17. List<String>? stuns,
  18. List<Turn>? turns,
  19. dynamic liveStreamingSignalServer,
  20. bool? isLiveStreamingEnabled,
  21. bool? sipcallEnabled,
  22. dynamic sipServer,
  23. String? callRoutingServer,
  24. dynamic chatBackupType,
  25. dynamic chatBackupFrequency,
  26. String? xmppPortWeb,
  27. String? iv,
  28. String? ivProfile,
  29. bool? groupChat,
  30. bool? attachment,
  31. bool? imageAttachment,
  32. bool? videoAttachment,
  33. bool? audioAttachment,
  34. bool? documentAttachment,
  35. bool? contactAttachment,
  36. bool? locationAttachment,
  37. bool? one2OneCall,
  38. bool? groupCall,
  39. bool? recentchatSearch,
  40. bool? starMessage,
  41. bool? clearChat,
  42. bool? deleteChat,
  43. bool? translation,
  44. bool? block,
  45. bool? report,
  46. bool? deleteMessage,
  47. bool? viewAllMedias,
  48. bool? chatHistory,
})

Initializes a new instance of the Config class.

Implementation

Config({
  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,
  this.stuns,
  this.turns,
  this.liveStreamingSignalServer,
  this.isLiveStreamingEnabled,
  this.sipcallEnabled,
  this.sipServer,
  this.callRoutingServer,
  this.chatBackupType,
  this.chatBackupFrequency,
  this.xmppPortWeb,
  this.iv,
  this.ivProfile,
  this.groupChat,
  this.attachment,
  this.imageAttachment,
  this.videoAttachment,
  this.audioAttachment,
  this.documentAttachment,
  this.contactAttachment,
  this.locationAttachment,
  this.one2OneCall,
  this.groupCall,
  this.recentchatSearch,
  this.starMessage,
  this.clearChat,
  this.deleteChat,
  this.translation,
  this.block,
  this.report,
  this.deleteMessage,
  this.viewAllMedias,
  this.chatHistory,
});