DataGridCheckboxValueChangedDetails constructor

const DataGridCheckboxValueChangedDetails({
  1. required bool value,
  2. required DataGridRow? row,
  3. required RowType rowType,
})

Implementation

const DataGridCheckboxValueChangedDetails({
  required this.value,
  required this.row,
  required this.rowType,
});