FdcFieldValueChangingContext<T> constructor
FdcFieldValueChangingContext<T> ({
- BuildContext? buildContext,
- required FdcDataSet dataSet,
- required FdcFieldEventHost host,
- required String fieldName,
- FdcFieldDef? field,
- required int rowIndex,
- int? columnIndex,
- Object? row,
- Object? column,
- T? oldValue,
- T? newValue,
- Object? oldRawValue,
- Object? newRawValue,
- Object? valueOf(
- String fieldName
Creates a FdcFieldValueChangingContext.
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;