FdcFieldValueChangedContext<T> constructor
const
FdcFieldValueChangedContext<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? value,
- Object? oldRawValue,
- Object? rawValue,
- Object? valueOf(
- String fieldName
Creates a FdcFieldValueChangedContext.
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;