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? chatNetworkConnectionErrorTextAppearanceRes,
  15. String? chatNetworkConnectionErrorText,
  16. String? chatInputTextColor,
  17. String? chatInputAttachmentIconTint,
  18. String? chatInputAttachmentBackgroundColor,
  19. String? chatInputAttachmentBackgroundDrawable,
  20. String? chatInputSendIconTint,
  21. String? chatInputSendBackgroundColor,
  22. String? chatInputSendBackgroundDrawable,
  23. String? chatInputSeparatorLineColor,
  24. String? chatInputHintText,
  25. 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.chatNetworkConnectionErrorTextAppearanceRes,
  this.chatNetworkConnectionErrorText,
  //input
  this.chatInputTextColor,
  this.chatInputAttachmentIconTint,
  this.chatInputAttachmentBackgroundColor,
  this.chatInputAttachmentBackgroundDrawable,
  this.chatInputSendIconTint,
  this.chatInputSendBackgroundColor,
  this.chatInputSendBackgroundDrawable,
  this.chatInputSeparatorLineColor,
  this.chatInputHintText,
  this.chatInputTextAppearance,
});