FormData

interface FormData<T>(source)

Represents the complete state of a form including its data and metadata.

This interface provides access to both the form's data value and its metadata, which includes field-level information such as validation errors, dirty state, and submission readiness.

Parameters

T

The type of the form data.

Inheritors

Properties

Link copied to clipboard
abstract val meta: FormMeta

The metadata associated with the form, including field states and submission status.

Link copied to clipboard
abstract val value: T

The current data value of the form.