FXText constructor
const
FXText(
- String data, {
- Key? key,
- String? fontFamily,
- double? size = fontSizeS,
- Color? color = Colors.black,
- TextAlign? align = TextAlign.left,
- FontWeight? weight = FontWeight.normal,
- TextDecoration? underline = TextDecoration.none,
- TextOverflow? overflow,
Implementation
const FXText(
this.data, {
Key? key,
this.fontFamily,
this.size = fontSizeS,
this.color = Colors.black,
this.align = TextAlign.left,
this.weight = FontWeight.normal,
this.underline = TextDecoration.none,
this.overflow,
}) : super(key: key);