renderTitle method
Implementation
Widget renderTitle(title, titleColor, titleSize) {
return Text(
localizedText(parser(title ?? 'Sample Title')),
style: TextStyle(
color: titleColor ?? const Color(0xFFC8C8C8),
fontSize: (titleSize ?? 14) * 1.25,
fontWeight: FontWeight.bold,
letterSpacing: 0,
),
);
}