toThresholdType method
Implementation
ThresholdType toThresholdType() {
switch (this) {
case 'PERCENTAGE':
return ThresholdType.percentage;
case 'ABSOLUTE_VALUE':
return ThresholdType.absoluteValue;
}
throw Exception('$this is not known in enum ThresholdType');
}