FXText constructor

const FXText(
  1. String data, {
  2. Key? key,
  3. TextStyle style = content,
  4. int? maxLines,
  5. double textMaxWidth = double.infinity,
  6. TextAlign? textAlign,
})

Implementation

const FXText(this.data,
    {Key? key, this.style = content, this.maxLines, this.textMaxWidth = double.infinity, this.textAlign})
    : super(key: key);