itemref function

Attribute<GlobalHTMLAttribute> itemref(
  1. String value
)

Properties that are not descendants of an element with the itemscope attribute can be associated with the item using an itemref. It provides a list of element ids (not itemids) with additional properties elsewhere in the document.

Implementation

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