updateText method
Updates a TextFieldState with a given value.
fieldNameThe name of the text field to update.valueThe new value for the text field.
Implementation
void updateText(String fieldName, String? value) {
updateValue<TextFieldState, String?>(fieldName, value);
}