headline2 static method
Implementation
static TextStyle headline2(BuildContext context, {Color? color}) {
return createResponsiveStyle(
fontSize: 28,
fontWeight: FontWeight.bold,
color: color ?? Theme.of(context).textTheme.displayMedium?.color,
height: 1.3,
);
}