toM2tsAudioStreamType method
Implementation
M2tsAudioStreamType toM2tsAudioStreamType() {
switch (this) {
case 'ATSC':
return M2tsAudioStreamType.atsc;
case 'DVB':
return M2tsAudioStreamType.dvb;
}
throw Exception('$this is not known in enum M2tsAudioStreamType');
}