supportsTrueCurve property
True if the service supports curve segments in feature geometries, false otherwise.
Some services support storing feature geometries with curve segments. By default, these services return densified versions of the feature geometries instead. Use ArcGISEnvironment.serviceCurveGeometryMode to change this behavior.
Implementation
bool get supportsTrueCurve {
return _withThrowingErrorHandler((errorHandler) {
return runtimecore.RT_ArcGISFeatureServiceInfo_getSupportsTrueCurve(
_handle, errorHandler);
});
}