toConditionType method

ConditionType toConditionType()

Implementation

ConditionType toConditionType() {
  switch (this) {
    case 'STRINGEQUALS':
      return ConditionType.stringequals;
  }
  throw Exception('$this is not known in enum ConditionType');
}