initialExtent property
The initial extent of the layer.
Implementation
Envelope? get initialExtent {
final objectHandle = _withThrowingErrorHandler((errorHandler) {
return runtimecore.RT_ArcGISMapServiceInfo_getInitialExtent(
_handle,
errorHandler,
);
});
return Envelope._fromHandle(
objectHandle,
);
}