FxTextStyle constructor

const FxTextStyle({
  1. Color? color,
  2. double? size,
  3. double? height,
  4. double textScale = 1.0,
  5. TextStyle? textStyle,
  6. int? maxLines,
  7. TextOverflow overflow = TextOverflow.clip,
  8. TextAlign? textAlign,
  9. FontWeight? fontWeight,
  10. Color? linkColor,
  11. FontWeight? linkFontWeight = FontWeight.w500,
})

Implementation

const FxTextStyle({
  this.color,
  this.size,
  this.height,
  this.textScale = 1.0,
  this.textStyle,
  this.maxLines,
  this.overflow = TextOverflow.clip,
  this.textAlign,
  this.fontWeight,
  this.linkColor,
  this.linkFontWeight = FontWeight.w500,
});