DynamicTableDataRow constructor

DynamicTableDataRow({
  1. required int index,
  2. bool selected = false,
  3. ValueChanged<bool?>? onSelectChanged,
  4. GestureLongPressCallback? onLongPress,
  5. MaterialStateProperty<Color?>? color,
  6. bool isEditing = false,
  7. required List<DynamicTableDataCell> cells,
})

Creates the configuration for a row of a DataTable.

The cells argument must not be null.

Implementation

DynamicTableDataRow({
  required this.index,
  this.selected = false,
  this.onSelectChanged,
  this.onLongPress,
  this.color,
  this.isEditing = false,
  required this.cells,
});