h5 static method

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

Headline 5 text style

Implementation

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