TextStyle constructor

TextStyle({
  1. OptionalColor? backgroundColor,
  2. String? baselineOffset,
  3. bool? bold,
  4. Dimension? fontSize,
  5. OptionalColor? foregroundColor,
  6. bool? italic,
  7. Link? link,
  8. bool? smallCaps,
  9. bool? strikethrough,
  10. bool? underline,
  11. WeightedFontFamily? weightedFontFamily,
})

Implementation

TextStyle({
  this.backgroundColor,
  this.baselineOffset,
  this.bold,
  this.fontSize,
  this.foregroundColor,
  this.italic,
  this.link,
  this.smallCaps,
  this.strikethrough,
  this.underline,
  this.weightedFontFamily,
});