ChatwootChatDialog constructor

const ChatwootChatDialog({
  1. Key? key,
  2. required String baseUrl,
  3. required String inboxIdentifier,
  4. bool enablePersistence = true,
  5. required String title,
  6. ChatwootUser? user,
  7. Color? primaryColor,
  8. Color? secondaryColor,
  9. Color? backgroundColor,
  10. ChatwootL10n? l10n,
  11. DateFormat? timeFormat,
  12. DateFormat? dateFormat,
})

Implementation

const ChatwootChatDialog({
  Key? key,
  required this.baseUrl,
  required this.inboxIdentifier,
  this.enablePersistence = true,
  required this.title,
  this.user,
  this.primaryColor,
  this.secondaryColor,
  this.backgroundColor,
  this.l10n,
  this.timeFormat,
  this.dateFormat,
}) : super(key: key);