getParentProperty method

Property<FormElement>? getParentProperty(
  1. FormElement? parent
)

Implementation

Property<FormElement>? getParentProperty(FormElement? parent) {
  if (parent == null) {
    return null;
  }
  return ImmutableProperty(parent);
}