isEmpty property

bool isEmpty

True if no coordinates have been added to this geometry builder, false otherwise.

An empty geometry builder may have a valid SpatialReference, even without coordinates.

Implementation

bool get isEmpty {
  return _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_GeometryBuilder_getIsEmpty(_handle, errorHandler);
  });
}