hasSubForms property

bool get hasSubForms

Whether this form contains any sub-forms (e.g. tabs or nested form groups).

Implementation

bool get hasSubForms {
  if (tabs != null && tabs!.isNotEmpty) return true;
  return _checkHasSubForms(allFields);
}