getSubtitleWidget method
Implementation
Widget? getSubtitleWidget(context){
return subtitle ?? (textSubtitle == null
? null : CustomText(
textSubtitle ?? '',
maxLines: maxLinesSubtitle,
overflow: TextOverflow.ellipsis,
style: Theme.of(context).textTheme.bodySmall!
.merge(TextStyle(color: textColor))
.merge(subtitleStyle)
));
}