itemprop function

Attribute<GlobalHTMLAttribute> itemprop(
  1. String value
)

Used to add properties to an item. Every HTML element may have an itemprop attribute specified, where an itemprop consists of a name and value pair.

Implementation

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