shapeCollectionWithShapes static method

MLNShapeCollection shapeCollectionWithShapes(
  1. NSArray shapes$1
)

Creates and returns a shape collection consisting of the given shapes.

@param shapes The array of shapes defining the shape collection. The data in this array is copied to the new object. @return A new shape collection object.

Implementation

static MLNShapeCollection shapeCollectionWithShapes(objc.NSArray shapes$1) {
  final _ret = _objc_msgSend_1sotr3r(_class_MLNShapeCollection, _sel_shapeCollectionWithShapes_, shapes$1.ref.pointer);
  return MLNShapeCollection.castFromPointer(_ret, retain: true, release: true);
}