toMpeg2SubGopLength method

Mpeg2SubGopLength toMpeg2SubGopLength()

Implementation

Mpeg2SubGopLength toMpeg2SubGopLength() {
  switch (this) {
    case 'DYNAMIC':
      return Mpeg2SubGopLength.dynamic;
    case 'FIXED':
      return Mpeg2SubGopLength.fixed;
  }
  throw Exception('$this is not known in enum Mpeg2SubGopLength');
}