MyText constructor
MyText({
- required String title,
- required Color? color,
- required double? size,
- TextAlign? alien,
- TextDecoration? decoration,
- TextOverflow? overflow,
- 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});