MyText constructor

MyText({
  1. required String title,
  2. required Color? color,
  3. required double? size,
  4. TextAlign? alien,
  5. TextDecoration? decoration,
  6. TextOverflow? overflow,
  7. FontWeight? fontWeight = FontWeight.bold,
})

Implementation

MyText({required this.title,required this.color,required this.size, this.alien,this.decoration,this.overflow,this.fontWeight=FontWeight.bold});