$is function

Attribute<GlobalHTMLAttribute> $is(
  1. String value
)

Allows you to specify that a standard HTML element should behave like a registered custom built-in element (see Using custom elements for more details).

Implementation

Attribute<GlobalHTMLAttribute> $is(String value) {
  return Attribute('is', value);
}