TMaker constructor

TMaker({
  1. Key? key,
  2. required String text,
  3. required double fontSize,
  4. required FontWeight fontWeight,
  5. required Color color,
  6. TextAlign? textAlign,
  7. String? fontFamily,
  8. int? maxLines,
  9. TextOverflow? overflow,
  10. TextDirection? textDirection,
})

Implementation

TMaker(
    {super.key,
    required this.text,
    required this.fontSize,
    required this.fontWeight,
    required this.color,
    this.textAlign,
    this.fontFamily,
    this.maxLines,
    this.overflow,
    this.textDirection});