getTitleWidget method
Implementation
Widget? getTitleWidget(context){
return title ?? (textTitle == null
? null : CustomText(
textTitle ?? '',
maxLines: maxLinesTitle,
overflow: TextOverflow.ellipsis,
style: Theme.of(context).textTheme.labelMedium!
.merge(TextStyle(color: textColor))
.merge(titleStyle)
));
}