TextRF constructor

const TextRF(
  1. String text, {
  2. Key? key,
  3. String? languageSource,
  4. double? size,
  5. FontWeight? Weight,
  6. Color? color,
  7. TextAlign align = TextAlign.left,
  8. bool visible = true,
  9. TextOverflow? overflow,
  10. dynamic template,
  11. int? maxLines,
  12. String? fontFamily,
})

Implementation

const TextRF(
  this.text, {
  super.key,
  this.languageSource,
  this.size,
  this.Weight,
  this.color,
  this.align = TextAlign.left,
  this.visible = true,
  this.overflow,
  this.template,
  this.maxLines,
  this.fontFamily,
});