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