size property

int size

The number of points in the collection.

Implementation

int get size {
  return _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_MutablePointCollection_getSize(
        _handle, errorHandler);
  });
}