myText constructor
const
myText({
- Key? key,
- required String text,
- Color? color,
- double? fontSize,
- FontWeight? bold,
- EdgeInsetsGeometry? padding,
- bool? softWrap,
- String? fontFamily,
- TextOverflow? overflow,
- TextAlign? textAlign,
Implementation
const myText({
super.key,
required this.text,
this.color,
this.fontSize,
this.bold,
this.padding,
this.softWrap,
this.fontFamily,
this.overflow,
this.textAlign,
});