RichLabelStyle constructor

const RichLabelStyle({
  1. Color? color,
  2. FontWeight? fontWeight,
  3. double? fontSize,
  4. String? fontFamily,
  5. bool ignoreCase = false,
  6. TextDecoration decoration = TextDecoration.none,
  7. TextDecorationStyle decorationStyle = TextDecorationStyle.solid,
  8. Color? decorationColor,
  9. VoidCallback? onTap,
})

Implementation

const RichLabelStyle({
  this.color,
  this.fontWeight,
  this.fontSize,
  this.fontFamily,
  this.ignoreCase = false,
  this.decoration = TextDecoration.none,
  this.decorationStyle = TextDecorationStyle.solid,
  this.decorationColor,
  this.onTap,
});