description property
The description of the version.
Implementation
String get description {
final stringHandle = _withThrowingErrorHandler((errorHandler) {
return runtimecore.RT_ServiceVersionParameters_getDescription(
_handle,
errorHandler,
);
});
return stringHandle.toDartString();
}
Implementation
set description(String value) {
final coreValue = _CString(value);
_withThrowingErrorHandler((errorHandler) {
runtimecore.RT_ServiceVersionParameters_setDescription(
_handle,
coreValue.bytes,
errorHandler,
);
});
}