UITextBlockData constructor

UITextBlockData({
  1. String? value,
  2. int? size,
  3. Color? color,
  4. FontDesign? design,
  5. FontWeight? weight,
  6. int? maxLines,
  7. FrameData? frame,
  8. UIBlockEventDispatcher? onClick,
})

Implementation

UITextBlockData({
  this.value,
  this.size,
  this.color,
  this.design,
  this.weight,
  this.maxLines,
  this.frame,
  this.onClick,
});