custom method
dynamic
custom(
- String fontFamily,
- double fontSize,
- double letterSpacing,
- FontWeight fontWeight,
- Color color,
Implementation
custom(String fontFamily, double fontSize, double letterSpacing,
FontWeight fontWeight, Color color) {
return GoogleFonts.getFont(fontFamily,
fontSize: fontSize,
letterSpacing: letterSpacing,
fontWeight: fontWeight,
color: color);
}