html function

Element html(
  1. String html, {
  2. String parent = 'div',
  3. Map<String, String> attributes = const {},
})

Implementation

Element html(String html,
    {String parent = 'div', Map<String, String> attributes = const {}}) {
  return _html(parent, html, attributes);
}