FdcFieldValueChangingContext<T> constructor

FdcFieldValueChangingContext<T>({
  1. BuildContext? buildContext,
  2. required FdcDataSet dataSet,
  3. required FdcFieldEventHost host,
  4. required String fieldName,
  5. FdcFieldDef? field,
  6. required int rowIndex,
  7. int? columnIndex,
  8. Object? row,
  9. Object? column,
  10. T? oldValue,
  11. T? newValue,
  12. Object? oldRawValue,
  13. Object? newRawValue,
  14. Object? valueOf(
    1. String fieldName
    )?,
})

Implementation

FdcFieldValueChangingContext({
  this.buildContext,
  required this.dataSet,
  required this.host,
  required this.fieldName,
  this.field,
  required this.rowIndex,
  this.columnIndex,
  this.row,
  this.column,
  this.oldValue,
  this.newValue,
  this.oldRawValue,
  this.newRawValue,
  Object? Function(String fieldName)? valueOf,
}) : _valueOf = valueOf;