xStyTextForTextBase static method

TextStyle xStyTextForTextBase([
  1. Color? textColor
])

fontSize 18

Implementation

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