ConversationTitleBarConfig constructor

const ConversationTitleBarConfig({
  1. bool showTitleBar = true,
  2. bool showTitleBarLeftIcon = true,
  3. bool showTitleBarRightIcon = true,
  4. bool showTitleBarRight2Icon = true,
  5. bool centerTitle = false,
  6. Widget? titleBarLeftIcon,
  7. Widget? titleBarRightIcon,
  8. Widget? titleBarRight2Icon,
  9. String? titleBarTitle,
  10. Color titleBarTitleColor = CommonColors.color_333333,
})

Implementation

const ConversationTitleBarConfig(
    {this.showTitleBar = true,
    this.showTitleBarLeftIcon = true,
    this.showTitleBarRightIcon = true,
    this.showTitleBarRight2Icon = true,
    this.centerTitle = false,
    this.titleBarLeftIcon,
    this.titleBarRightIcon,
    this.titleBarRight2Icon,
    this.titleBarTitle,
    this.titleBarTitleColor = CommonColors.color_333333});