void save()

Calls the FormField's onSaved method with the current value.

Source

void save() {
  if (config.onSaved != null)
    config.onSaved(value);
}