renderTitle method

Widget renderTitle(
  1. dynamic title,
  2. dynamic titleColor,
  3. dynamic titleSize
)

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,
    ),
  );
}