DataRow constructor

const DataRow({LocalKey key, bool selected: false, ValueChanged<bool> onSelectChanged, @required List<DataCell> cells })

Creates the configuration for a row of a DataTable.

The cells argument must not be null.

Implementation

const DataRow({
  this.key,
  this.selected = false,
  this.onSelectChanged,
  @required this.cells,
}) : assert(cells != null);