caption static method
TextStyle
caption({
- Color color = fontColor,
- FontWeight fontWeight = FontWeight.w400,
- bool underline = false,
- double? height,
Implementation
static TextStyle caption({
Color color = fontColor,
FontWeight fontWeight = FontWeight.w400,
bool underline = false,
double? height,
}) => TextStyle(
color: color,
fontFamily: fontFamily,
fontWeight: fontWeight,
fontSize: 12.0,
height: height,
decoration: underline ? TextDecoration.underline : null
);