TextStyle constructor

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

Implementation

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