SelectableHtml.fromDom constructor

SelectableHtml.fromDom({
  1. Key? key,
  2. required Document? document,
  3. OnTap? onLinkTap,
  4. OnTap? onAnchorTap,
  5. OnCssParseError? onCssParseError,
  6. bool shrinkWrap = false,
  7. Map<String, Style> style = const {},
  8. List<String> tagsList = const [],
})

Implementation

SelectableHtml.fromDom({
  Key? key,
  required this.document,
  this.onLinkTap,
  this.onAnchorTap,
  this.onCssParseError,
  this.shrinkWrap = false,
  this.style = const {},
  this.tagsList = const [],
})  : data = null,
      super(key: key);