rowcount property

  1. @override
  2. @Accessor(key: 'aria-rowcount')
int? rowcount

Defines the total number of rows in a table, grid, or treegrid

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

Implementation

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

Defines the total number of rows in a table, grid, or treegrid

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

Implementation

@override
@Accessor(key: 'aria-rowcount')
set rowcount(int? value) => props[_$key__rowcount___$AriaPropsMixin] = value;