TodayTableRow constructor

const TodayTableRow({
  1. required List<TodayTableCell> cells,
  2. bool selected = false,
  3. bool disabled = false,
  4. bool footer = false,
  5. bool isGroup = false,
  6. List<TodayTableRow> children = const [],
  7. dynamic onChanged(
    1. TodayCheckboxValue value
    )?,
  8. dynamic onSelectChanged(
    1. bool? value
    )?,
})

Implementation

const TodayTableRow({
  required this.cells,
  this.selected = false,
  this.disabled = false,
  this.footer = false,
  this.isGroup = false,
  this.children = const [],
  this.onChanged,
  this.onSelectChanged,
});