buildTitle property
Widget
get
buildTitle
Implementation
Widget get buildTitle {
if (label != null) return label!;
final TextStyle style = TextStyle(color: color).merge(labelStyle);
return Text(labelText ?? '',
style: style,
textAlign: textAlign,
maxLines: maxLines,
textDirection: textDirection,
overflow: overflow);
}