name property
The field's name.
Field names 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_FieldDescription_getName(
_handle,
errorHandler,
);
});
return stringHandle.toDartString();
}
Implementation
set name(String value) {
final coreValue = _CString(value);
_withThrowingErrorHandler((errorHandler) {
runtimecore.RT_FieldDescription_setName(
_handle,
coreValue.bytes,
errorHandler,
);
});
}