h2 static method

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

Fonte h2 Font family: Inter Font size: 32 Font weight: 600 Height: 125%

Implementation

static TextStyle h2({Color? color}) {
  return TextStyle(
    color: color,
    fontFamily: 'Inter',
    fontSize: 32.0,
    fontWeight: FontWeight.w600,
    height: 1.25,
    package: package,
  );
}