ContactTitleBarConfig constructor

const ContactTitleBarConfig({
  1. bool showTitleBar = true,
  2. bool showTitleBarRightIcon = true,
  3. bool showTitleBarRight2Icon = true,
  4. Widget? titleBarRightIcon,
  5. Widget? titleBarRight2Icon,
  6. String? title,
  7. bool centerTitle = false,
  8. Color titleColor = CommonColors.color_333333,
})

Implementation

const ContactTitleBarConfig(
    {this.showTitleBar = true,
    this.showTitleBarRightIcon = true,
    this.showTitleBarRight2Icon = true,
    this.titleBarRightIcon,
    this.titleBarRight2Icon,
    this.title,
    this.centerTitle = false,
    this.titleColor = CommonColors.color_333333});