TextStyle constructor

const TextStyle({
  1. double? fontSize,
  2. String? color,
  3. FontWeight? fontWeight,
  4. String? fontFamily,
  5. String? backgroundColor,
  6. TextDecoration? decoration,
  7. double? letterSpacing,
  8. double? wordSpacing,
  9. double? lineHeight,
})

Implementation

const TextStyle({
  this.fontSize,
  this.color,
  this.fontWeight,
  this.fontFamily,
  this.backgroundColor,
  this.decoration,
  this.letterSpacing,
  this.wordSpacing,
  this.lineHeight,
});