isFormBeingValidated function

bool isFormBeingValidated(
  1. String formName
)

Allows to check if a form is in the process of being validated

Implementation

bool isFormBeingValidated(String formName) {
  return liteFormController._isFormBeingValidated(formName);
}