name property
The name of the domain to be created.
The domain name must not be empty. It must only consist of alphanumeric characters and underscores, and it must not start with a number or an underscore.
Implementation
String get name {
final stringHandle = _withThrowingErrorHandler((errorHandler) {
return runtimecore.RT_DomainDescription_getName(
_handle,
errorHandler,
);
});
return stringHandle.toDartString();
}
Implementation
set name(String value) {
final coreValue = _CString(value);
_withThrowingErrorHandler((errorHandler) {
runtimecore.RT_DomainDescription_setName(
_handle,
coreValue.bytes,
errorHandler,
);
});
}