toQuotaPeriodType method
Implementation
QuotaPeriodType toQuotaPeriodType() {
switch (this) {
case 'DAY':
return QuotaPeriodType.day;
case 'WEEK':
return QuotaPeriodType.week;
case 'MONTH':
return QuotaPeriodType.month;
}
throw Exception('$this is not known in enum QuotaPeriodType');
}