rowspan property

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

Defines the number of rows spanned by a cell or gridcell within a table, grid, or treegrid

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

Implementation

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

Defines the number of rows spanned by a cell or gridcell within a table, grid, or treegrid

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

Implementation

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