roledescription property

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

Defines an author-localized description for the role of an element

Only use aria-roledescription to clarify the purpose of non-interactive container roles like group or region and to provide a more specific description to a widget

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

Implementation

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

Defines an author-localized description for the role of an element

Only use aria-roledescription to clarify the purpose of non-interactive container roles like group or region and to provide a more specific description to a widget

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

Implementation

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