comfortaa static method
TextStyle
comfortaa({
- double fontSize = 14,
- FontWeight fontWeight = FontWeight.w400,
- Color? color,
- double? height,
- TextDecoration? decoration,
Get Comfortaa text style
Implementation
static TextStyle comfortaa({
double fontSize = 14,
FontWeight fontWeight = FontWeight.w400,
Color? color,
double? height,
TextDecoration? decoration,
}) {
return GoogleFonts.comfortaa(
fontSize: fontSize,
fontWeight: fontWeight,
color: color,
height: height,
decoration: decoration,
);
}