customTextStyle static method

TextStyle customTextStyle({
  1. double? fontSize,
  2. FontWeight? fontWeight,
  3. Color? color,
  4. double? letterSpacing,
  5. TextOverflow? overflow,
})

Implementation

static TextStyle customTextStyle({
  double? fontSize,
  FontWeight? fontWeight,
  Color? color,
  double? letterSpacing,
  TextOverflow? overflow,
}) {
  return GoogleFonts.workSans(
      fontSize: fontSize,
      fontWeight: fontWeight,
      color: color,
      letterSpacing: letterSpacing);
}