onEditTextValueChange property

dynamic Function(String value, RowFieldWidgetModel<T>)? onEditTextValueChange
getter/setter pair

onEditTextValueChange is also a Function. Which is used when the field or the cell is a EditText type. This function also has 2 parameter. One is String type, which is the updated String value which is written in the edit text field and another one is the another one is RowFieldWidgetModel

Implementation

Function(String value, RowFieldWidgetModel<T>)? onEditTextValueChange;