access property
The access level of the version.
Implementation
VersionAccess get access {
final coreValue = _withThrowingErrorHandler((errorHandler) {
return runtimecore.RT_ServiceVersionParameters_getAccess(
_handle,
errorHandler,
);
});
return VersionAccess._fromCoreValue(
coreValue,
);
}
Implementation
set access(VersionAccess value) {
_withThrowingErrorHandler((errorHandler) {
runtimecore.RT_ServiceVersionParameters_setAccess(
_handle,
value.coreValue,
errorHandler,
);
});
}