h4 static method

TextStyle h4({
  1. Color? color,
})

Fonte h4 Font family: Inter Font size: 20 Font weight: 500 Height: 160%

Implementation

static TextStyle h4({Color? color}) {
  return TextStyle(
    color: color,
    fontFamily: 'Inter',
    fontSize: 20.0,
    fontWeight: FontWeight.w500,
    height: 1.6,
    package: package,
  );
}