caption static method

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

Implementation

static TextStyle caption({Color? color, FontWeight? fontWeight}) {
  return TextStyle(
    fontSize: 11.sp,
    fontWeight: fontWeight ?? FontWeight.normal,
    color: color ?? Colors.grey,
    height: 1.4,
  );
}