geodatabaseVersion property
The geodatabase version.
Implementation
String get geodatabaseVersion {
final stringHandle = _withThrowingErrorHandler((errorHandler) {
return runtimecore.RT_MapSublayerSource_getGeodatabaseVersion(
_handle, errorHandler);
});
return stringHandle.toDartString();
}
Implementation
set geodatabaseVersion(String value) {
final coreValue = _CString(value);
_withThrowingErrorHandler((errorHandler) {
runtimecore.RT_MapSublayerSource_setGeodatabaseVersion(
_handle, coreValue.bytes, errorHandler);
});
}