sectionHeaderTitleTextStyle function
TextStyle
sectionHeaderTitleTextStyle({
- double fontSize = 16.0,
- Color? textColor = appColorBlack,
- FontWeight fontWeight = FontWeight.normal,
Implementation
TextStyle sectionHeaderTitleTextStyle({
double fontSize = 16.0,
Color? textColor = appColorBlack,
FontWeight fontWeight = FontWeight.normal,
}) {
return TextStyle(fontSize: fontSize, color: textColor, fontWeight: fontWeight);
}