AndroidInAppChatCustomization constructor

AndroidInAppChatCustomization({
  1. bool? chatStatusBarColorLight,
  2. String? chatStatusBarBackgroundColor,
  3. String? chatNavigationIcon,
  4. String? chatNavigationIconTint,
  5. String? chatSubtitleText,
  6. String? chatSubtitleTextColor,
  7. String? chatSubtitleTextAppearanceRes,
  8. bool? chatSubtitleCentered,
  9. bool? chatTitleCentered,
  10. String? chatTitleTextAppearanceRes,
  11. String? chatMenuItemsIconTint,
  12. String? chatMenuItemSaveAttachmentIcon,
  13. String? chatProgressBarColor,
  14. String? chatNetworkConnectionErrorText,
  15. String? chatNetworkConnectionErrorTextAppearanceRes,
  16. String? chatNetworkConnectionErrorIcon,
  17. String? chatNetworkConnectionErrorIconTint,
  18. String? chatInputTextColor,
  19. String? chatInputAttachmentIconTint,
  20. String? chatInputAttachmentBackgroundColor,
  21. String? chatInputAttachmentBackgroundDrawable,
  22. String? chatInputSendIconTint,
  23. String? chatInputSendBackgroundColor,
  24. String? chatInputSendBackgroundDrawable,
  25. String? chatInputSeparatorLineColor,
  26. String? chatInputHintText,
  27. String? chatInputTextAppearance,
})

Implementation

AndroidInAppChatCustomization({
  //status bar
  this.chatStatusBarColorLight,
  this.chatStatusBarBackgroundColor,
  //toolbar
  this.chatNavigationIcon,
  this.chatNavigationIconTint,
  this.chatSubtitleText,
  this.chatSubtitleTextColor,
  this.chatSubtitleTextAppearanceRes,
  this.chatSubtitleCentered,
  this.chatTitleCentered,
  this.chatTitleTextAppearanceRes,
  this.chatMenuItemsIconTint,
  this.chatMenuItemSaveAttachmentIcon,
  //chat
  this.chatProgressBarColor,
  this.chatNetworkConnectionErrorText,
  this.chatNetworkConnectionErrorTextAppearanceRes,
  this.chatNetworkConnectionErrorIcon,
  this.chatNetworkConnectionErrorIconTint,
  //input
  this.chatInputTextColor,
  this.chatInputAttachmentIconTint,
  this.chatInputAttachmentBackgroundColor,
  this.chatInputAttachmentBackgroundDrawable,
  this.chatInputSendIconTint,
  this.chatInputSendBackgroundColor,
  this.chatInputSendBackgroundDrawable,
  this.chatInputSeparatorLineColor,
  this.chatInputHintText,
  this.chatInputTextAppearance,
});