hiddenField<T> method

HiddenFieldState<T> hiddenField<T>(
  1. String fieldName
)

Retrieves the hidden field state for a specified fieldName.

  • Parameter fieldName The name of the hidden field to fetch.
  • Returns: The hidden field state.
  • Throws: ArgumentError if the field doesn't exist.

Implementation

HiddenFieldState<T> hiddenField<T>(String fieldName) {
  return get<HiddenFieldState<T>, T>(fieldName);
}