Text constructor

Text(
  1. String data, {
  2. String? id,
  3. TextStyle? style,
  4. TextAlign align = TextAlign.left,
  5. int? maxLines,
  6. TextOverflow? overflow,
  7. String? xData,
  8. String? xInit,
  9. String? xShow,
  10. Map<String, String>? xBind,
  11. Map<String, String>? xOn,
  12. String? xText,
  13. String? xHtml,
  14. String? xModel,
  15. String? xModelable,
  16. String? xFor,
  17. String? xTransition,
  18. String? xEffect,
  19. bool? xIgnore,
  20. String? xRef,
  21. bool? xCloak,
  22. String? xTeleport,
  23. bool? xIf,
  24. String? xId,
})

Implementation

Text(
  this.data, {
  super.id,
  this.style,
  this.align = TextAlign.left,
  this.maxLines,
  this.overflow,
  super.xData,
  super.xInit,
  super.xShow,
  super.xBind,
  super.xOn,
  super.xText,
  super.xHtml,
  super.xModel,
  super.xModelable,
  super.xFor,
  super.xTransition,
  super.xEffect,
  super.xIgnore,
  super.xRef,
  super.xCloak,
  super.xTeleport,
  super.xIf,
  super.xId,
});