XTextParams constructor

XTextParams({
  1. required String data,
  2. required HubbleTextStyle style,
  3. TextAlign? textAlign,
  4. int? maxLines = 1,
  5. TextOverflow? overflow,
  6. bool isReactive = false,
  7. required Symbol contextName,
  8. bool isInterpolated = false,
  9. XEventTriggerBase? onTap,
})

Implementation

XTextParams({
  required this.data,
  required this.style,
  this.textAlign,
  this.maxLines = 1,
  this.overflow,
  this.isReactive = false,
  required this.contextName,
  this.isInterpolated = false,
  this.onTap,
});