Html constructor

const Html({
  1. Key? key,
  2. String? data,
  3. OnLinkTap? onLinkTap,
  4. Map<String, dynamic>? style,
  5. bool? shrinkWrap,
  6. HyperWidgetBuilder? customWidgetBuilder,
  7. Widget onError(
    1. BuildContext context,
    2. Object error
    )?,
  8. bool selectable = true,
})

Implementation

const Html({
  super.key,
  this.data,
  this.onLinkTap,
  this.style,
  this.shrinkWrap,
  this.customWidgetBuilder,
  this.onError,
  this.selectable = true,
});