VolvoxDataGrid<T> constructor

const VolvoxDataGrid<T>({
  1. required List<T> rows,
  2. required List<VolvoxColumn<T>> columns,
  3. ValueChanged<VolvoxCellEdit<T>>? onCellEdit,
  4. VolvoxGridController? controller,
  5. Key? key,
})

Implementation

const VolvoxDataGrid({
  required this.rows,
  required this.columns,
  this.onCellEdit,
  this.controller,
  super.key,
});