alias property
The field's alias.
The default value is an empty string.
Implementation
String get alias {
final stringHandle = _withThrowingErrorHandler((errorHandler) {
return runtimecore.RT_FieldDescription_getAlias(_handle, errorHandler);
});
return stringHandle.toDartString();
}
Implementation
set alias(String value) {
final coreValue = _CString(value);
_withThrowingErrorHandler((errorHandler) {
runtimecore.RT_FieldDescription_setAlias(
_handle, coreValue.bytes, errorHandler);
});
}