InAppChatCustomization constructor

InAppChatCustomization({
  1. String? toolbarTitle,
  2. String? toolbarTitleColor,
  3. String? toolbarTintColor,
  4. String? toolbarBackgroundColor,
  5. String? sendButtonTintColor,
  6. String? chatBackgroundColor,
  7. String? widgetTheme,
  8. String? noConnectionAlertTextColor,
  9. String? noConnectionAlertBackgroundColor,
  10. String? chatInputPlaceholderColor,
  11. String? chatInputCursorColor,
  12. String? chatInputBackgroundColor,
  13. String? sendButtonIcon,
  14. String? attachmentButtonIcon,
  15. bool? chatInputSeparatorVisible,
  16. AndroidInAppChatCustomization? android,
  17. IOSInAppChatCustomization? ios,
})

Implementation

InAppChatCustomization({
    this.toolbarTitle,
    this.toolbarTitleColor,
    this.toolbarTintColor,
    this.toolbarBackgroundColor,
    this.sendButtonTintColor,
    this.chatBackgroundColor,
    this.widgetTheme,
    this.noConnectionAlertTextColor,
    this.noConnectionAlertBackgroundColor,
    this.chatInputPlaceholderColor,
    this.chatInputCursorColor,
    this.chatInputBackgroundColor,
    this.sendButtonIcon,
    this.attachmentButtonIcon,
    this.chatInputSeparatorVisible,
    this.android,
    this.ios});