current property

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

Indicates that the element represents the current item within a container or set of related elements

Indicates the element on which it is set, to a value other than false, represents the current item within a container or set of related elements. Only mark one element in a set of elements as current with aria-current

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

Implementation

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

Indicates that the element represents the current item within a container or set of related elements

Indicates the element on which it is set, to a value other than false, represents the current item within a container or set of related elements. Only mark one element in a set of elements as current with aria-current

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

Implementation

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