heading3 static method
Implementation
static TextStyle heading3({Color? color, FontWeight? fontWeight}) {
return TextStyle(
fontSize: 24.sp,
fontWeight: fontWeight ?? FontWeight.w600,
color: color,
height: 1.3,
);
}
static TextStyle heading3({Color? color, FontWeight? fontWeight}) {
return TextStyle(
fontSize: 24.sp,
fontWeight: fontWeight ?? FontWeight.w600,
color: color,
height: 1.3,
);
}