onFieldName property
The name of the field in the table containing values to be used for the statistic.
Implementation
String get onFieldName {
final stringHandle = _withThrowingErrorHandler((errorHandler) {
return runtimecore.RT_StatisticDefinition_getOnFieldName(
_handle, errorHandler);
});
return stringHandle.toDartString();
}
Implementation
set onFieldName(String value) {
final coreValue = _CString(value);
_withThrowingErrorHandler((errorHandler) {
runtimecore.RT_StatisticDefinition_setOnFieldName(
_handle, coreValue.bytes, errorHandler);
});
}