FormMapValues typedef

FormMapValues = Map<FormKey, dynamic>

A map of form field keys to their values.

Used to collect and pass around form data, where each key uniquely identifies a form field and maps to its current value.

Implementation

typedef FormMapValues = Map<FormKey, dynamic>;