heading6 static method

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

Implementation

static TextStyle heading6({Color? color, FontWeight? fontWeight}) {
  return TextStyle(
    fontSize: 16.sp,
    fontWeight: fontWeight ?? FontWeight.w600,
    color: color,
    height: 1.4,
  );
}