html static method

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

Set attributes on the html element

Implementation

static Component html({Map<String, String>? attributes}) {
  throw UnsupportedError(
    'Cannot use DocumentHelper without a platform implementation',
  );
}