toScheduleState method
Implementation
ScheduleState toScheduleState() {
switch (this) {
case 'SCHEDULED':
return ScheduleState.scheduled;
case 'NOT_SCHEDULED':
return ScheduleState.notScheduled;
case 'TRANSITIONING':
return ScheduleState.transitioning;
}
throw Exception('$this is not known in enum ScheduleState');
}