toFormIgnoreName method

String toFormIgnoreName()

this is a utility method. Call it on a FormGroupField's name value, to exclude this form field value from a form. This might be necessary sometimes, for example if you want to combine a few form fields in one (e.g. a LitePhoneInputField) but you want only one of them in a form

Implementation

String toFormIgnoreName() {
  return '${this}_ignore_in_form';
}