h1 static method

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

Fonte h1 Font family: Inter Font size: 40 Font weight: 700 Height: 120%

Implementation

static TextStyle h1({Color? color}) {
  return TextStyle(
    color: color,
    fontFamily: 'Inter',
    fontSize: 40.0,
    fontWeight: FontWeight.w700,
    height: 1.2,
    package: package,
  );
}