HtmlContent constructor

const HtmlContent({
  1. Key? key,
  2. TextStyle? textStyle,
  3. EdgeInsetsGeometry? padding,
  4. dynamic onTapUrl(
    1. String
    )?,
  5. required String content,
  6. bool useWhiteSpace = false,
})

Implementation

const HtmlContent({
  super.key,
  this.textStyle,
  this.padding,
  this.onTapUrl,
  required this.content,
  this.useWhiteSpace = false,
});