toJobPhase method
Implementation
JobPhase toJobPhase() {
switch (this) {
case 'PROBING':
return JobPhase.probing;
case 'TRANSCODING':
return JobPhase.transcoding;
case 'UPLOADING':
return JobPhase.uploading;
}
throw Exception('$this is not known in enum JobPhase');
}