StacCustomTextStyle constructor

StacCustomTextStyle({
  1. bool? inherit,
  2. StacColor? color,
  3. StacColor? backgroundColor,
  4. double? fontSize,
  5. StacFontWeight? fontWeight,
  6. StacFontStyle? fontStyle,
  7. double? letterSpacing,
  8. double? wordSpacing,
  9. StacTextBaseline? textBaseline,
  10. double? height,
  11. StacTextLeadingDistribution? leadingDistribution,
  12. StacColor? decorationColor,
  13. StacTextDecorationStyle? decorationStyle,
  14. double? decorationThickness,
  15. String? debugLabel,
  16. String? fontFamily,
  17. List<String>? fontFamilyFallback,
  18. String? package,
  19. StacTextOverflow? overflow,
})

Implementation

StacCustomTextStyle({
  this.inherit,
  this.color,
  this.backgroundColor,
  this.fontSize,
  this.fontWeight,
  this.fontStyle,
  this.letterSpacing,
  this.wordSpacing,
  this.textBaseline,
  this.height,
  this.leadingDistribution,
  this.decorationColor,
  this.decorationStyle,
  this.decorationThickness,
  this.debugLabel,
  this.fontFamily,
  this.fontFamilyFallback,
  this.package,
  this.overflow,
}) : super._(type: StacTextStyleType.custom);