toMpeg2DynamicSubGop method

Mpeg2DynamicSubGop toMpeg2DynamicSubGop()

Implementation

Mpeg2DynamicSubGop toMpeg2DynamicSubGop() {
  switch (this) {
    case 'ADAPTIVE':
      return Mpeg2DynamicSubGop.adaptive;
    case 'STATIC':
      return Mpeg2DynamicSubGop.static;
  }
  throw Exception('$this is not known in enum Mpeg2DynamicSubGop');
}