GridRow<T extends SpannedGridItem> constructor

GridRow<T extends SpannedGridItem>({
  1. required List<GridRowItem<T>> items,
  2. required int rowIndex,
  3. required int totalSpan,
})

Implementation

GridRow({
  required this.items,
  required this.rowIndex,
  required this.totalSpan,
});