getPoint method
- {required int index}
Returns a point at the specified index in the collection.
Parameters:
index
— The position in the collection.
Return Value: The point at the specified position in the collection.
Implementation
ArcGISPoint getPoint({required int index}) {
final objectHandle = _withThrowingErrorHandler((errorHandler) {
return runtimecore.RT_MutablePointCollection_getPoint(
_handle, index, errorHandler);
});
return ArcGISPoint._fromHandle(objectHandle)!;
}