comfortaa static method

TextStyle comfortaa({
  1. double fontSize = 14,
  2. FontWeight fontWeight = FontWeight.w400,
  3. Color? color,
  4. double? height,
  5. 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,
  );
}