FdcFieldFocusContext<T> constructor
const
FdcFieldFocusContext<T> ({
- BuildContext? buildContext,
- required FdcDataSet dataSet,
- required FdcFieldEventHost host,
- required String? fieldName,
- FdcFieldDef? field,
- int? rowIndex,
- int? columnIndex,
- Object? row,
- Object? column,
- T? value,
- Object? rawValue,
- int? fromRowIndex,
- int? toRowIndex,
- int? fromColumnIndex,
- int? toColumnIndex,
- String? fromFieldName,
- String? toFieldName,
- FdcFieldFocusChangeReason reason = FdcFieldFocusChangeReason.programmatic,
- Object? valueOf(
- String fieldName
Creates a FdcFieldFocusContext.
Implementation
const FdcFieldFocusContext({
this.buildContext,
required this.dataSet,
required this.host,
required this.fieldName,
this.field,
this.rowIndex,
this.columnIndex,
this.row,
this.column,
this.value,
this.rawValue,
this.fromRowIndex,
this.toRowIndex,
this.fromColumnIndex,
this.toColumnIndex,
this.fromFieldName,
this.toFieldName,
this.reason = FdcFieldFocusChangeReason.programmatic,
Object? Function(String fieldName)? valueOf,
}) : _valueOf = valueOf;