toRelevanceType method
Implementation
RelevanceType toRelevanceType() {
switch (this) {
case 'RELEVANT':
return RelevanceType.relevant;
case 'NOT_RELEVANT':
return RelevanceType.notRelevant;
}
throw Exception('$this is not known in enum RelevanceType');
}