xStyTextForLargeTitle static method

TextStyle xStyTextForLargeTitle([
  1. Color? textColor
])

fontSize 24

Implementation

static TextStyle xStyTextForLargeTitle([Color? textColor]) {
  return TextStyle(fontSize: 24, color: textColor ?? Colors.white);
}