StyleMarkup constructor

const StyleMarkup({
  1. String tag = 'style',
  2. Set<String>? alias,
  3. ColorMapper? colorMapper,
  4. StyleMapper? styleMapper,
  5. FontWeight? weight,
  6. FontStyle? fontStyle,
  7. double? height,
  8. TextDecoration? decoration,
  9. TextDecorationStyle? decorationStyle,
  10. Color? decorationColor,
  11. double? decorationThickness,
})

Implementation

const StyleMarkup({
  String tag = 'style',
  super.alias,
  this.colorMapper,
  this.styleMapper,
  this.weight,
  this.fontStyle,
  this.height,
  this.decoration,
  this.decorationStyle,
  this.decorationColor,
  this.decorationThickness,
}) : super(tag);