label static method
TextStyle
label({
- FontWeight fontWeight = FontWeight.w500,
- Color? color,
- bool allowFontScaling = false,
Label text style
Implementation
static TextStyle label({
FontWeight fontWeight = FontWeight.w500,
Color? color,
bool allowFontScaling = false,
}) {
return style(
fontSize: 12,
fontWeight: fontWeight,
color: color,
letterSpacing: 0.5,
allowFontScaling: allowFontScaling,
);
}