h4 static method

TextStyle h4({
  1. FontWeight fontWeight = FontWeight.w600,
  2. Color? color,
  3. bool allowFontScaling = false,
})

Headline 4 text style

Implementation

static TextStyle h4({
  FontWeight fontWeight = FontWeight.w600,
  Color? color,
  bool allowFontScaling = false,
}) {
  return style(
    fontSize: ScreenUtil.instance.isPhone ? 18 : 20,
    fontWeight: fontWeight,
    color: color,
    allowFontScaling: allowFontScaling,
  );
}