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