smallTitleTextStyle function

TextStyle smallTitleTextStyle({
  1. double fontSize = 10.0,
  2. Color? textColor = appColorBlack,
  3. FontWeight fontWeight = FontWeight.normal,
})

Implementation

TextStyle smallTitleTextStyle({
  double fontSize = 10.0,
  Color? textColor = appColorBlack,
  FontWeight fontWeight = FontWeight.normal,
}) {
  return TextStyle(fontSize: fontSize, color: textColor, fontWeight: fontWeight);
}