toM2tsAbsentInputAudioBehavior method

M2tsAbsentInputAudioBehavior toM2tsAbsentInputAudioBehavior()

Implementation

M2tsAbsentInputAudioBehavior toM2tsAbsentInputAudioBehavior() {
  switch (this) {
    case 'DROP':
      return M2tsAbsentInputAudioBehavior.drop;
    case 'ENCODE_SILENCE':
      return M2tsAbsentInputAudioBehavior.encodeSilence;
  }
  throw Exception('$this is not known in enum M2tsAbsentInputAudioBehavior');
}