geometry property
Service area polyline's geometry.
The geometry for the polyline in case if ServiceAreaParameters.returnPolylines is true.
Implementation
Polyline get geometry {
final objectHandle = _withThrowingErrorHandler((errorHandler) {
return runtimecore.RT_ServiceAreaPolyline_getGeometry(
_handle, errorHandler);
});
return Polyline._fromHandle(objectHandle)!;
}