titleWidget property

Widget titleWidget

Implementation

Widget get titleWidget {
  if (title != null) return title!;
  final TextStyle style = BTextStyle(color: color).merge(titleStyle);
  return BText(titleText ?? '',
      style: style,
      textAlign: textAlign,
      maxLines: maxLines,
      textDirection: textDirection,
      overflow: overflow);
}