html static method

Widget html({
  1. Map<String, String>? attributes,
})

Set attributes on the html element

Implementation

static Widget html({Map<String, String>? attributes}) {
  return Document.html(attributes: attributes);
}