titleFontNormal function

dynamic titleFontNormal(
  1. Color colorValue,
  2. double fontSize
)

Implementation

titleFontNormal(Color colorValue, double fontSize) {
  return TextStyle(fontSize: fontSize, fontFamily: titleFont, color: colorValue, fontWeight: FontWeight.w800);
}