memberParts property

Iterator<Part> memberParts

This read-only property returns an iterator over the member Parts of this Group. Setting Part#containingGroup to refer to this Group will add that part to this collection. The Parts can be Nodes, Links, Groups, or simple Parts.

A template should not have any member parts.

Implementation

_i3.Iterator<_i3.Part> get memberParts => _i4.getProperty(
      this,
      'memberParts',
    );
void memberParts=(Iterator<Part> value)

Implementation

set memberParts(_i3.Iterator<_i3.Part> value) {
  _i4.setProperty(
    this,
    'memberParts',
    value,
  );
}