TextStyle constructor

const TextStyle({
  1. String? color,
  2. double? fontSize,
  3. FontWeight? fontWeight,
  4. FontStyle? fontStyle,
  5. TextDecoration? decoration,
  6. double? lineSpacing,
  7. double? height,
  8. double? letterSpacing,
})

TextStyle API.

Implementation

const TextStyle({
  this.color,
  this.fontSize,
  this.fontWeight,
  this.fontStyle,
  this.decoration,
  this.lineSpacing,
  this.height,
  this.letterSpacing,
});