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