toVc3Telecine method

Vc3Telecine toVc3Telecine()

Implementation

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