sectionHeaderTitleTextStyle function

TextStyle sectionHeaderTitleTextStyle({
  1. double fontSize = 16.0,
  2. Color? textColor = appColorBlack,
  3. 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);
}