brailleroledescription property

  1. @override
  2. @Accessor(key: 'aria-brailleroledescription')
String? brailleroledescription

Defines a human-readable, author-localized abbreviated description for the role of an element intended to be converted into Braille

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

Implementation

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

Defines a human-readable, author-localized abbreviated description for the role of an element intended to be converted into Braille

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

Implementation

@override
@Accessor(key: 'aria-brailleroledescription')
set brailleroledescription(String? value) =>
    props[_$key__brailleroledescription___$AriaPropsMixin] = value;