LayoutGridCell<T extends DataGridRow> constructor

const LayoutGridCell<T extends DataGridRow>({
  1. Key? key,
  2. required T row,
  3. required double rowId,
  4. required DataGridColumn<T> column,
  5. required int rowIndex,
})

Implementation

const LayoutGridCell({
  super.key,
  required this.row,
  required this.rowId,
  required this.column,
  required this.rowIndex,
});