BaseTextStyle constructor
      
      BaseTextStyle({ 
    
    
- Color? color,
- double? fontSize,
- FontWeight? fontWeight,
- TextDecoration? decoration,
- TextBaseline? textBaseline,
- double? height,
Implementation
BaseTextStyle({
  this.color,
  this.fontSize,
  this.fontWeight,
  this.decoration,
  this.textBaseline,
  this.height,
});