textStyle24Bold function

TextStyle textStyle24Bold()

get text style with font size 24 and bold

Implementation

TextStyle textStyle24Bold() {
  return TextStyle(
    fontSize: 24,
    fontWeight: FontWeight.bold,
    fontFamily: getFontFamily(),
  );
}