StyleMarkup constructor

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

Implementation

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