heading4 static method

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

Implementation

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