large1 method

TextStyle large1({
  1. Color? color,
  2. bool? isBold,
  3. String? fontFamily,
  4. FontWeight fontWeight = FontWeight.normal,
  5. bool? isStatic,
})

Implementation

TextStyle large1(
    {Color? color,
    bool? isBold,
    String? fontFamily,
    FontWeight fontWeight = FontWeight.normal,
    bool? isStatic}) {
  return Rixa.appFonts.large1(
      color: color,
      isBold: isBold,
      pageName: name,
      fontFamily: fontFamily,
      fontWeight: fontWeight,
      isStatic: isStatic);
}