hasCurves property
True if the part contains any curve segments, false otherwise.
If the value is true, curve segments may be returned from ImmutablePart.getSegment. A part may contain a mix of linear and curve segments.
Implementation
bool get hasCurves {
return _withThrowingErrorHandler((errorHandler) {
return runtimecore.RT_ImmutablePart_getHasCurves(
_handle,
errorHandler,
);
});
}