attributeName property

String attributeName

Attribute's name.

Implementation

String get attributeName {
  final stringHandle = _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_AttributeParameterValue_getAttributeName(
        _handle, errorHandler);
  });
  return stringHandle.toDartString();
}
void attributeName=(String value)

Implementation

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