colspan property

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

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

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

Implementation

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

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

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

Implementation

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