headerTextStyle function

TextStyle headerTextStyle({
  1. Color? textColor = appColorBlack,
})

Implementation

TextStyle headerTextStyle({
  Color? textColor = appColorBlack,
}) {
  return TextStyle(fontSize: 18, color: textColor);
}