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