currentVersion property
The current version of the ArcGIS map service.
Implementation
String get currentVersion {
final stringHandle = _withThrowingErrorHandler((errorHandler) {
return runtimecore.RT_ArcGISMapServiceInfo_getCurrentVersion(
_handle, errorHandler);
});
return stringHandle.toDartString();
}