bodyLarge static method
TextStyle
bodyLarge({
- FontWeight fontWeight = FontWeight.normal,
- Color? color,
- bool allowFontScaling = false,
Body large text style
Implementation
static TextStyle bodyLarge({
FontWeight fontWeight = FontWeight.normal,
Color? color,
bool allowFontScaling = false,
}) {
return style(
fontSize: 16,
fontWeight: fontWeight,
color: color,
height: 1.5,
allowFontScaling: allowFontScaling,
);
}