toH264GopSizeUnits method

H264GopSizeUnits toH264GopSizeUnits()

Implementation

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