toValidityType method
Implementation
ValidityType toValidityType() {
switch (this) {
case 'DAYS':
return ValidityType.days;
case 'MONTHS':
return ValidityType.months;
case 'YEARS':
return ValidityType.years;
}
throw Exception('$this is not known in enum ValidityType');
}