DynamicTextStyle constructor

const DynamicTextStyle({
  1. Color? color,
  2. Color? backgroundColor,
  3. Dimension? fontSize,
  4. FontWeight? fontWeight,
  5. FontStyle? fontStyle,
  6. Dimension? letterSpacing,
  7. Dimension? wordSpacing,
  8. double? height,
  9. List<Shadow>? shadows,
  10. TextDecoration? decoration,
  11. Color? decorationColor,
  12. TextDecorationStyle? decorationStyle,
  13. double? decorationThickness,
  14. String? fontFamily,
})

Implementation

const DynamicTextStyle({
  this.color,
  this.backgroundColor,
  this.fontSize,
  this.fontWeight,
  this.fontStyle,
  this.letterSpacing,
  this.wordSpacing,
  this.height,
  this.shadows,
  this.decoration,
  this.decorationColor,
  this.decorationStyle,
  this.decorationThickness,
  this.fontFamily,
});