HiddenFieldState<T> constructor

HiddenFieldState<T>(
  1. T value
)

Creates a new instance of HiddenFieldState.

  • value The value associated with the hidden field (optional).

Implementation

HiddenFieldState(T value) : super(value: value, label: '', rules: const []);