validateForm method

FutureOr<void> validateForm(
  1. F formData, {
  2. E? key,
  3. bool forceFullValidation = false,
})
inherited

Validates the form.

key is provided when a single field changed.

When forceFullValidation is true, implementations should validate the whole form according to formValidationMode.

Implementation

FutureOr<void> validateForm(
  F formData, {
  E? key,
  bool forceFullValidation = false,
}) {}