toH264GopSizeUnits method
Implementation
H264GopSizeUnits toH264GopSizeUnits() {
switch (this) {
case 'FRAMES':
return H264GopSizeUnits.frames;
case 'SECONDS':
return H264GopSizeUnits.seconds;
}
throw Exception('$this is not known in enum H264GopSizeUnits');
}