overline static method
TextStyle
overline({
- FontWeight fontWeight = FontWeight.w500,
- Color? color,
- bool allowFontScaling = false,
Overline text style
Implementation
static TextStyle overline({
FontWeight fontWeight = FontWeight.w500,
Color? color,
bool allowFontScaling = false,
}) {
return style(
fontSize: 10,
fontWeight: fontWeight,
color: color,
letterSpacing: 1.5,
allowFontScaling: allowFontScaling,
);
}