ValidationInterceptor<T extends DataGridRow> constructor

ValidationInterceptor<T extends DataGridRow>({
  1. bool canEditCell(
    1. double rowId,
    2. int columnId
    )?,
  2. bool canSelectRow(
    1. double rowId
    )?,
  3. Future<bool> onCellCommit(
    1. double rowId,
    2. int columnId,
    3. dynamic oldValue,
    4. dynamic newValue,
    )?,
})

Implementation

ValidationInterceptor({
  this.canEditCell,
  this.canSelectRow,
  this.onCellCommit,
});