AttributedString constructor
AttributedString({
- Color? backgroundColor,
- double? baselineOffset,
- double? expansion,
- Color? foregroundColor,
- double? kern,
- int? ligature,
- double? obliqueness,
- Color? strikethroughColor,
- UnderlineStyle? strikethroughStyle,
- required String string,
- Color? strokeColor,
- double? strokeWidth,
- AttributedStringTextEffectStyle? textEffect,
- Color? underlineColor,
- UnderlineStyle? underlineStyle,
Implementation
AttributedString(
{this.backgroundColor,
this.baselineOffset,
this.expansion,
this.foregroundColor,
this.kern,
this.ligature,
this.obliqueness,
this.strikethroughColor,
this.strikethroughStyle,
required this.string,
this.strokeColor,
this.strokeWidth,
this.textEffect,
this.underlineColor,
this.underlineStyle});