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