statisticType property

StatisticType statisticType

The statistic to calculate.

Implementation

StatisticType get statisticType {
  final coreValue = _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_StatisticDefinition_getStatisticType(
      _handle,
      errorHandler,
    );
  });
  return StatisticType._fromCoreValue(
    coreValue,
  );
}
void statisticType=(StatisticType value)

Implementation

set statisticType(StatisticType value) {
  _withThrowingErrorHandler((errorHandler) {
    runtimecore.RT_StatisticDefinition_setStatisticType(
      _handle,
      value.coreValue,
      errorHandler,
    );
  });
}