caption static method
TextStyle
caption({
- FontWeight fontWeight = FontWeight.normal,
- Color? color,
- bool allowFontScaling = false,
Caption text style
Implementation
static TextStyle caption({
FontWeight fontWeight = FontWeight.normal,
Color? color,
bool allowFontScaling = false,
}) {
return style(
fontSize: 12,
fontWeight: fontWeight,
color: color,
allowFontScaling: allowFontScaling,
);
}