FdcFieldValueChangedContext<T> constructor

const FdcFieldValueChangedContext<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? value,
  12. Object? oldRawValue,
  13. Object? rawValue,
  14. Object? valueOf(
    1. String fieldName
    )?,
})

Implementation

const FdcFieldValueChangedContext({
  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.value,
  this.oldRawValue,
  this.rawValue,
  Object? Function(String fieldName)? valueOf,
}) : _valueOf = valueOf;