smallTitleTextStyle function
TextStyle
smallTitleTextStyle({
- double fontSize = 10.0,
- Color? textColor = appColorBlack,
- 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);
}