setCoordinates method

void setCoordinates(
  1. Pointer<CLLocationCoordinate2D> coords, {
  2. required int count,
})

Sets the shape’s vertices to the given C array of vertices.

@param coords The array of coordinates defining the shape. The data in this array is copied to the shape’s coordinates property. @param count The number of coordinates from the coords array.

Implementation

void setCoordinates(ffi.Pointer<CLLocationCoordinate2D> coords, {required int count}) {
_objc_msgSend_xee6m1(this.ref.pointer, _sel_setCoordinates_count_, coords, count);

}