getFormPropertyIterator<TProperty extends Property> function

Iterable<TProperty> getFormPropertyIterator<TProperty extends Property>(
  1. FormElement rootFormElement
)

Implementation

Iterable<TProperty> getFormPropertyIterator<TProperty extends Property>(
    FormElement rootFormElement) sync* {
  for (var formElement
      in getFormElementIterator<FormElement>(rootFormElement)) {
    yield* formElement.getProperties().values.whereType<TProperty>();
  }
}