outputAlias property
The name for this statistic in the results.
If an output alias is not specified, a default name that identifies the statistic type and input field name will be used for the result.
Implementation
String get outputAlias {
final stringHandle = _withThrowingErrorHandler((errorHandler) {
return runtimecore.RT_StatisticDefinition_getOutputAlias(
_handle, errorHandler);
});
return stringHandle.toDartString();
}
Implementation
set outputAlias(String value) {
final coreValue = _CString(value);
_withThrowingErrorHandler((errorHandler) {
runtimecore.RT_StatisticDefinition_setOutputAlias(
_handle, coreValue.bytes, errorHandler);
});
}