textStyle24Bold function
get text style with font size 24 and bold
Implementation
TextStyle textStyle24Bold() {
  return TextStyle(
    fontSize: 24,
    fontWeight: FontWeight.bold,
    fontFamily: getFontFamily(),
  );
}get text style with font size 24 and bold
TextStyle textStyle24Bold() {
  return TextStyle(
    fontSize: 24,
    fontWeight: FontWeight.bold,
    fontFamily: getFontFamily(),
  );
}