name property
The name of the domain to be created.
Specifies the name of the domain. The domain name must be non-empty, consist only of alphanumeric characters and underscores, and cannot 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);
});
}