isClosed property

bool isClosed

Indicates is a segment is closed, it has a matching start and end point.

Implementation

bool get isClosed {
  return _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_Segment_getIsClosed(_handle, errorHandler);
  });
}