rowindextext property

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

Defines a text alternative of aria-rowindex

The aria-rowindextext should only be included in addition to, not as a replacement of, the aria-rowindex See: developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-rowindextext

Implementation

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

Defines a text alternative of aria-rowindex

The aria-rowindextext should only be included in addition to, not as a replacement of, the aria-rowindex See: developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-rowindextext

Implementation

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