heading3 static method

TextStyle heading3({
  1. Color? color,
  2. FontWeight? fontWeight,
})

Implementation

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