BaseTextStyle constructor

BaseTextStyle({
  1. Color? color,
  2. double? fontSize,
  3. FontWeight? fontWeight,
  4. TextDecoration? decoration,
  5. TextBaseline? textBaseline,
  6. double? height,
})

Implementation

BaseTextStyle({
  this.color,
  this.fontSize,
  this.fontWeight,
  this.decoration,
  this.textBaseline,
  this.height,
});