toUsageReportSchedule method
Implementation
UsageReportSchedule toUsageReportSchedule() {
switch (this) {
case 'DAILY':
return UsageReportSchedule.daily;
}
throw Exception('$this is not known in enum UsageReportSchedule');
}
UsageReportSchedule toUsageReportSchedule() {
switch (this) {
case 'DAILY':
return UsageReportSchedule.daily;
}
throw Exception('$this is not known in enum UsageReportSchedule');
}