TextLarge constructor

TextLarge(
  1. String? text, {
  2. Key? key,
  3. Color? color,
  4. int? maxLines,
  5. double? height,
  6. double? letterSpacing,
  7. double fontSize = 16,
  8. TextStyle? style,
  9. TextOverflow? overflow,
  10. TextAlign? textAlign,
  11. FontType? fontType = FontType.semiBold,
  12. FontWeight? fontWeight,
  13. String? fontFamily,
})

Implementation

TextLarge(super.text,
    {super.key,
    Color? color,
    super.maxLines,
    super.height,
    super.letterSpacing,
    super.fontSize = 16,
    super.style,
    super.overflow,
    super.textAlign,
    super.fontType = FontType.semiBold,
    super.fontWeight,
    super.fontFamily})
    : super(color: color ?? GlobalConfig().config.textColor?.largeColor);