h6 static method

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

Headline 6 text style

Implementation

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