InlineTextStyle constructor

InlineTextStyle({
  1. Color? color,
  2. String? fontFamily,
  3. double? fontSize,
  4. double? fontScale,
  5. FontWeight? fontWeight,
  6. FontStyle? fontStyle,
  7. double? letterSpacing,
  8. double? wordSpacing,
  9. double? height,
  10. TextLeadingDistribution? leadingDistribution,
  11. List<Shadow>? shadows,
  12. List<FontFeature>? fontFeatures,
  13. List<FontVariation>? fontVariations,
  14. TextDecoration? decoration,
  15. Color? decorationColor,
  16. TextDecorationStyle? decorationStyle,
  17. double? decorationThickness,
  18. Paint? background,
  19. Paint? foreground,
})

Implementation

InlineTextStyle({
  this.color,
  this.fontFamily,
  this.fontSize,
  this.fontScale,
  this.fontWeight,
  this.fontStyle,
  this.letterSpacing,
  this.wordSpacing,
  this.height,
  this.leadingDistribution,
  this.shadows,
  this.fontFeatures,
  this.fontVariations,
  this.decoration,
  this.decorationColor,
  this.decorationStyle,
  this.decorationThickness,
  this.background,
  this.foreground,
});