toStateValue method

StateValue toStateValue()

Implementation

StateValue toStateValue() {
  switch (this) {
    case 'OK':
      return StateValue.ok;
    case 'ALARM':
      return StateValue.alarm;
    case 'INSUFFICIENT_DATA':
      return StateValue.insufficientData;
  }
  throw Exception('$this is not known in enum StateValue');
}