clearAllFields method

void clearAllFields()

清空所有字段值

Implementation

void clearAllFields() {
  _formData.clear();
  _errors.clear();
  notifyListeners();
  _onChanged?.call(_formData);
}