SupportPortalConfig constructor

const SupportPortalConfig({
  1. required String domain,
  2. required String platformId,
  3. required String appId,
  4. required String apiUrl,
  5. String? wsUrl,
  6. String? primaryColor,
  7. String? theme,
  8. String? welcomeMessage,
  9. int maxOpenTickets = 10,
  10. String? helpCenterUrl,
  11. bool enableDebugLogging = false,
})

Implementation

const SupportPortalConfig({
  required this.domain,
  required this.platformId,
  required this.appId,
  required this.apiUrl,
  this.wsUrl,
  this.primaryColor,
  this.theme,
  this.welcomeMessage,
  this.maxOpenTickets = 10,
  this.helpCenterUrl,
  this.enableDebugLogging = false,
});