toState method
Implementation
State toState() {
switch (this) {
case 'WAITING':
return State.waiting;
case 'IN_PROGRESS':
return State.inProgress;
case 'ERROR':
return State.error;
case 'COMPLETED':
return State.completed;
case 'CANCELLED':
return State.cancelled;
case 'TIMED_OUT':
return State.timedOut;
}
throw Exception('$this is not known in enum State');
}