toM2tsAudioDuration method
Implementation
M2tsAudioDuration toM2tsAudioDuration() {
switch (this) {
case 'DEFAULT_CODEC_DURATION':
return M2tsAudioDuration.defaultCodecDuration;
case 'MATCH_VIDEO_DURATION':
return M2tsAudioDuration.matchVideoDuration;
}
throw Exception('$this is not known in enum M2tsAudioDuration');
}