DrawableTextStyle constructor

const DrawableTextStyle({
  1. TextDecoration? decoration,
  2. Color? decorationColor,
  3. TextDecorationStyle? decorationStyle,
  4. FontWeight? fontWeight,
  5. String? fontFamily,
  6. double? fontSize,
  7. FontStyle? fontStyle,
  8. DrawablePaint? foreground,
  9. DrawablePaint? background,
  10. double? letterSpacing,
  11. double? wordSpacing,
  12. double? height,
  13. Locale? locale,
  14. TextBaseline? textBaseline,
  15. DrawableTextAnchorPosition? anchor,
})

Creates a new DrawableTextStyle.

Implementation

const DrawableTextStyle({
  this.decoration,
  this.decorationColor,
  this.decorationStyle,
  this.fontWeight,
  this.fontFamily,
  this.fontSize,
  this.fontStyle,
  this.foreground,
  this.background,
  this.letterSpacing,
  this.wordSpacing,
  this.height,
  this.locale,
  this.textBaseline,
  this.anchor,
});