name property
The name of the domain.
Implementation
String get name {
final stringHandle = _withThrowingErrorHandler((errorHandler) {
return runtimecore.RT_Domain_getName(_handle, errorHandler);
});
return stringHandle.toDartString();
}
The name of the domain.
String get name {
final stringHandle = _withThrowingErrorHandler((errorHandler) {
return runtimecore.RT_Domain_getName(_handle, errorHandler);
});
return stringHandle.toDartString();
}