TextX constructor

const TextX(
  1. String text, {
  2. Key? key,
  3. TextStyle? style,
  4. Color? color,
  5. double? size,
  6. FontWeight? weight,
  7. double? height,
  8. int? maxLines,
  9. bool? softWrap,
  10. TextOverflow? overflow,
  11. TextAlign? textAlign,
})

Implementation

const TextX(
  this.text, {
  super.key,
  this.style,
  this.color,
  this.size,
  this.weight,
  this.height,
  this.maxLines,
  this.softWrap,
  this.overflow,
  this.textAlign,
});