dropDownValue<T> method

T dropDownValue<T>(
  1. String fieldName
)

Retrieves the selected value of the dropdown field for a specified fieldName.

This method retrieves the currently selected value of the dropdown field identified by the provided fieldName.

  • Parameter fieldName The name of the dropdown field to retrieve the value from.
  • Returns: The selected value of the dropdown field, or null if no value is selected.
  • Throws: ArgumentError if the field doesn't exist.

Implementation

T dropDownValue<T>(String fieldName) {
  return dropDownField<T>(fieldName).value;
}