initialExtent property
The service's initial extent.
Implementation
Envelope? get initialExtent {
final objectHandle = _withThrowingErrorHandler((errorHandler) {
return runtimecore.RT_ArcGISFeatureServiceInfo_getInitialExtent(
_handle,
errorHandler,
);
});
return Envelope._fromHandle(
objectHandle,
);
}