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