accesskey function

Attribute<GlobalHTMLAttribute> accesskey(
  1. String value
)

Provides a hint for generating a keyboard shortcut for the current element. This attribute consists of a space-separated list of characters. The browser should use the first one that exists on the computer keyboard layout.

Implementation

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