heading2 static method
Implementation
static TextStyle heading2({Color? color, FontWeight? fontWeight}) {
return TextStyle(
fontSize: 28.sp,
fontWeight: fontWeight ?? FontWeight.bold,
color: color,
height: 1.2,
letterSpacing: -0.5.sp,
);
}