toM2tsAbsentInputAudioBehavior method
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');
}