TextRF constructor

const TextRF(
  1. String? text, {
  2. String? languageSource,
  3. double? size,
  4. FontWeight? weight,
  5. Color? color,
  6. bool visible = true,
  7. TextStyle? style,
  8. TextAlign align = TextAlign.left,
  9. TextOverflow overflow = TextOverflow.ellipsis,
  10. int? maxLine,
  11. dynamic template,
})

Implementation

const TextRF(
  this.text, {
  this.languageSource,
  this.size,
  this.weight,
  this.color,
  this.visible = true,
  this.style,
  this.align = TextAlign.left,
  this.overflow = TextOverflow.ellipsis,
  this.maxLine,
  this.template,
});