updateRadioGroup<T> method

void updateRadioGroup<T>(
  1. String fieldName,
  2. T value
)

Updates a RadioGroupFieldState with a given value.

  • fieldName The name of the radio group field to update.
  • value The new value for the radio group field.

Implementation

void updateRadioGroup<T>(String fieldName, T value) {
  update<RadioGroupFieldState<T>, T>(fieldName, value);
}