asyncRadioButtonsOf<T> method

Future<List<RadioButtonFieldState<T>>> asyncRadioButtonsOf<T>(
  1. String fieldName
)

Retrieves a list of RadioButtonFieldState for a specified fieldName.

This method simplifies fetching async radio button states for the given fieldName.

Implementation

Future<List<RadioButtonFieldState<T>>> asyncRadioButtonsOf<T>(
    String fieldName) {
  return asyncRadioGroup<T>(fieldName).resolvedItems;
}