bodyMedium static method

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

Implementation

static TextStyle bodyMedium({Color? color, FontWeight? fontWeight}) {
  return TextStyle(
    fontSize: 14.sp,
    fontWeight: fontWeight ?? FontWeight.normal,
    color: color,
    height: 1.5,
  );
}