olegkrutskih
Results
1
comments of
olegkrutskih
@Devbrail You can do it like this: ```dart class Fonts { static TextStyle interNormal({ FontWeight? weight = FontWeight.normal }) { return GoogleFonts.inter( fontSize: 12, fontStyle: FontStyle.normal, fontWeight: weight, ); }...