h3 static method

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

Fonte h3 Font family: Inter Font size: 24 Font weight: 500 Height: 133,33%

Implementation

static TextStyle h3({Color? color}) {
  return TextStyle(
    color: color,
    fontFamily: 'Inter',
    fontWeight: FontWeight.w500,
    fontSize: 24.0,
    height: 1.3333,
    package: package,
  );
}