bodySmall static method

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

Implementation

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