TextStyle constructor
      
      TextStyle({ 
    
    
- OptionalColor? backgroundColor,
- String? baselineOffset,
- bool? bold,
- String? fontFamily,
- Dimension? fontSize,
- OptionalColor? foregroundColor,
- bool? italic,
- Link? link,
- bool? smallCaps,
- bool? strikethrough,
- bool? underline,
- WeightedFontFamily? weightedFontFamily,
Implementation
TextStyle({
  this.backgroundColor,
  this.baselineOffset,
  this.bold,
  this.fontFamily,
  this.fontSize,
  this.foregroundColor,
  this.italic,
  this.link,
  this.smallCaps,
  this.strikethrough,
  this.underline,
  this.weightedFontFamily,
});