updateDropDown<T> method
Updates a DropDownFieldState with a given value.
fieldNameThe name of the dropdown field to update.valueThe new value for the dropdown field.
Implementation
void updateDropDown<T>(String fieldName, T value) {
updateValue<DropDownFieldState<T>, T>(fieldName, value);
}