UIText constructor

const UIText({
  1. Key? key,
  2. required UIComponent componentData,
  3. required String taskId,
  4. dynamic textClickHandler(
    1. String
    )?,
  5. String? fontFamily,
  6. double? width,
  7. double? height,
  8. int? index,
})

Implementation

const UIText({
  super.key,
  required this.componentData,
  required this.taskId,
  this.textClickHandler,
  this.fontFamily,
  this.width,
  this.height,
  this.index,
});