toVc3Telecine method
Implementation
Vc3Telecine toVc3Telecine() {
switch (this) {
case 'NONE':
return Vc3Telecine.none;
case 'HARD':
return Vc3Telecine.hard;
}
throw Exception('$this is not known in enum Vc3Telecine');
}
Vc3Telecine toVc3Telecine() {
switch (this) {
case 'NONE':
return Vc3Telecine.none;
case 'HARD':
return Vc3Telecine.hard;
}
throw Exception('$this is not known in enum Vc3Telecine');
}