DynamicTableDataRow constructor
DynamicTableDataRow({
- required int index,
- bool selected = false,
- ValueChanged<
bool?> ? onSelectChanged, - GestureLongPressCallback? onLongPress,
- MaterialStateProperty<
Color?> ? color, - bool isEditing = false,
- 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,
});