TitleViewBranchWidget constructor

const TitleViewBranchWidget({
  1. Key? key,
  2. String titleTxt = "",
  3. Widget? titleWidget,
  4. double titleSize = 16,
  5. FontWeight titleFontWeight = FontWeight.w700,
  6. TextStyle? titleStyle,
  7. String subTxt = "",
  8. double subTxtSize = 12,
  9. Widget? bottomWidget,
  10. AnimationController? animationController,
  11. Animation<double>? animation,
  12. EdgeInsets padding = const EdgeInsets.only(left: 8, right: 8),
})

Implementation

const TitleViewBranchWidget(
    {super.key,
    this.titleTxt = "",
    this.titleWidget,
    this.titleSize = 16,
    this.titleFontWeight = FontWeight.w700,
    this.titleStyle,
    this.subTxt = "",
    this.subTxtSize = 12,
    this.bottomWidget,
    this.animationController,
    this.animation,
    this.padding = const EdgeInsets.only(left: 8, right: 8)});