description property

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

Defines a string value that describes or annotates the current element

Provides a mechanism for the developer to describe or annotate the current element providing greater context for assistive technology users.

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

Implementation

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

Defines a string value that describes or annotates the current element

Provides a mechanism for the developer to describe or annotate the current element providing greater context for assistive technology users.

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

Implementation

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