toMpeg2Syntax method

Mpeg2Syntax toMpeg2Syntax()

Implementation

Mpeg2Syntax toMpeg2Syntax() {
  switch (this) {
    case 'DEFAULT':
      return Mpeg2Syntax.$default;
    case 'D_10':
      return Mpeg2Syntax.d_10;
  }
  throw Exception('$this is not known in enum Mpeg2Syntax');
}