keyshortcuts property

  1. @override
  2. @Accessor(key: 'aria-keyshortcuts')
dynamic keyshortcuts

Indicates keyboard shortcuts that an author has implemented to activate or give focus to an element

A series of one or several keys that tells software to perform a pre-programmed action. Keyboard shortcuts enable keyboard users to invoke commands using the keyboard that would otherwise require accessing a menu or using touch or a mouse.The aria-keyshortcuts property defines the keyboard keys that have been implemented to activate or give focus to the element on which the attribute is set

See: developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-keyshortcuts

Implementation

@override
@Accessor(key: 'aria-keyshortcuts')
dynamic get keyshortcuts =>
    (props[_$key__keyshortcuts___$AriaPropsMixin] ?? null) as dynamic;
  1. @override
  2. @Accessor(key: 'aria-keyshortcuts')
void keyshortcuts=(dynamic value)

Indicates keyboard shortcuts that an author has implemented to activate or give focus to an element

A series of one or several keys that tells software to perform a pre-programmed action. Keyboard shortcuts enable keyboard users to invoke commands using the keyboard that would otherwise require accessing a menu or using touch or a mouse.The aria-keyshortcuts property defines the keyboard keys that have been implemented to activate or give focus to the element on which the attribute is set

See: developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-keyshortcuts

Implementation

@override
@Accessor(key: 'aria-keyshortcuts')
set keyshortcuts(dynamic value) =>
    props[_$key__keyshortcuts___$AriaPropsMixin] = value;