interiorPolygons property

NSArray? get interiorPolygons

The array of polygons nested inside the receiver.

The area occupied by any interior polygons is excluded from the overall shape. Interior polygons should not overlap. An interior polygon should not have interior polygons of its own.

If there are no interior polygons, the value of this property is nil.

Implementation

objc.NSArray? get interiorPolygons {
  final _ret = _objc_msgSend_151sglz(this.ref.pointer, _sel_interiorPolygons);
  return _ret.address == 0 ? null : objc.NSArray.castFromPointer(_ret, retain: true, release: true);
}