name property

String name

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();
}
void name=(String value)

Implementation

set name(String value) {
  final coreValue = _CString(value);
  _withThrowingErrorHandler((errorHandler) {
    runtimecore.RT_DomainDescription_setName(
      _handle,
      coreValue.bytes,
      errorHandler,
    );
  });
}