origin property
The origin of the source data.
Implementation
ArcGISPoint? get origin {
final objectHandle = _withThrowingErrorHandler((errorHandler) {
return runtimecore.RT_VectorTileSourceInfo_getOrigin(
_handle,
errorHandler,
);
});
return ArcGISPoint._fromHandle(
objectHandle,
);
}