textStyle method
TextStyle
textStyle({
- double fontSize = 14,
- FontWeight fontWeight = FontWeight.normal,
- bool isMonospace = false,
Get text style for the theme.
Implementation
TextStyle textStyle({
double fontSize = 14,
FontWeight fontWeight = FontWeight.normal,
bool isMonospace = false,
}) {
return TextStyle(
color: textPrimary,
fontSize: fontSize,
fontWeight: fontWeight,
fontFamily: isMonospace ? monoFontFamily : fontFamily,
);
}