details property

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

Identifies the element (or elements) that provide additional information related to the object or complex descriptions to an object

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

Implementation

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

Identifies the element (or elements) that provide additional information related to the object or complex descriptions to an object

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

Implementation

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