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