toUsageReportSchedule method

UsageReportSchedule toUsageReportSchedule()

Implementation

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