statisticType property
The statistic to calculate.
Implementation
StatisticType get statisticType {
final coreValue = _withThrowingErrorHandler((errorHandler) {
return runtimecore.RT_StatisticDefinition_getStatisticType(
_handle,
errorHandler,
);
});
return StatisticType._fromCoreValue(
coreValue,
);
}
Implementation
set statisticType(StatisticType value) {
_withThrowingErrorHandler((errorHandler) {
runtimecore.RT_StatisticDefinition_setStatisticType(
_handle,
value.coreValue,
errorHandler,
);
});
}