CustomTxt constructor
CustomTxt(
- String value, {
- Key? key,
- String? fontFamily,
- int maxLine = 0,
- double? textSize,
- Color? textColor,
- TextAlign? textAlign,
- Rich? rich,
- Locale? locale,
- TextDecoration? textDecoration = TextDecoration.none,
- TextDirection? textDirection,
- TextStyle textStyle(
- TextStyle value
- TextOverflow? textOverflow,
Implementation
CustomTxt(this.value,
{ Key? key,
this.fontFamily,
this.maxLine = 0,
this.textSize,
this.textColor,
this.textAlign,
this.rich,
this.locale,
this.textDecoration = TextDecoration.none,
this.textDirection,
this.textStyle,
this.textOverflow})
:super(key: key);