UITextBlockData constructor

UITextBlockData({
  1. String? value,
  2. int? size,
  3. double? lineHeight,
  4. ColorValue? color,
  5. FontDesign? design,
  6. FontWeight? weight,
  7. int? maxLines,
  8. bool? scaleWithDeviceFontSize,
  9. FrameData? frame,
  10. UIBlockAction? onClick,
})

Implementation

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