MyText constructor

MyText({
  1. required String title,
  2. required Color? color,
  3. required double? size,
  4. TextAlign? alien,
  5. String? fontFamily,
  6. TextDecoration? decoration,
  7. double? letterSpace,
  8. double? wordSpace,
  9. TextOverflow? overflow,
  10. FontWeight? fontWeight,
})

Implementation

MyText(
    {required this.title,
    required this.color,
    required this.size,
    this.alien,
    this.fontFamily,
    this.decoration,
    this.letterSpace,
    this.wordSpace,
    this.overflow,
    this.fontWeight});