versionName property
The name of the version the ServiceGeodatabase is currently connected to.
To change the version this ServiceGeodatabase is connected to, use the ServiceGeodatabase.switchVersion method.
Implementation
String get versionName {
final stringHandle = _withThrowingErrorHandler((errorHandler) {
return runtimecore.RT_ServiceGeodatabase_getVersionName(
_handle,
errorHandler,
);
});
return stringHandle.toDartString();
}