CuReText constructor

const CuReText(
  1. String text, {
  2. Key? key,
  3. Color? color,
  4. double? size,
  5. FontWeight? weight,
  6. double? lineHeight,
  7. int? maxLines,
  8. TextAlign? align,
  9. TextDecoration? decoration,
  10. TextOverflow? overflow,
  11. List<Shadow>? shadows,
  12. EdgeInsets? padding,
  13. double? letterSpacing,
  14. String? fontFamily,
})

Implementation

const CuReText(
  this.text, {
  super.key,
  this.color,
  this.size,
  this.weight,
  this.lineHeight,
  this.maxLines,
  this.align,
  this.decoration,
  this.overflow,
  this.shadows,
  this.padding,
  this.letterSpacing,
  this.fontFamily,
});