RowData<T, C extends AbstractCell<T>> constructor

RowData<T, C extends AbstractCell<T>>({
  1. required int index,
  2. List<C>? cells,
})

Implementation

RowData({required this.index, List<C>? cells})
    : _cells = cells ?? List<C>.empty(growable: true);