geodatabaseVersion property
The service geodatabase version name.
This property is populated if the ServiceFeatureTable is provided by a
layer or a table in a web map or if the ServiceFeatureTable is created
using ServiceGeodatabase.getTable(int64)
.
The default geodatabase version has the string value "sde.DEFAULT".
Implementation
String get geodatabaseVersion {
final stringHandle = _withThrowingErrorHandler((errorHandler) {
return runtimecore.RT_ServiceFeatureTable_getGeodatabaseVersion(
_handle, errorHandler);
});
return stringHandle.toDartString();
}
Implementation
set geodatabaseVersion(String value) {
final coreValue = _CString(value);
_withThrowingErrorHandler((errorHandler) {
runtimecore.RT_ServiceFeatureTable_setGeodatabaseVersion(
_handle, coreValue.bytes, errorHandler);
});
}