toM2tsAudioStreamType method

M2tsAudioStreamType toM2tsAudioStreamType()

Implementation

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