toMpeg2ColorSpace method

Mpeg2ColorSpace toMpeg2ColorSpace()

Implementation

Mpeg2ColorSpace toMpeg2ColorSpace() {
  switch (this) {
    case 'AUTO':
      return Mpeg2ColorSpace.auto;
    case 'PASSTHROUGH':
      return Mpeg2ColorSpace.passthrough;
  }
  throw Exception('$this is not known in enum Mpeg2ColorSpace');
}