TextOptions constructor

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

Implementation

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