toEac3AtmosStereoDownmix method

Eac3AtmosStereoDownmix toEac3AtmosStereoDownmix()

Implementation

Eac3AtmosStereoDownmix toEac3AtmosStereoDownmix() {
  switch (this) {
    case 'NOT_INDICATED':
      return Eac3AtmosStereoDownmix.notIndicated;
    case 'STEREO':
      return Eac3AtmosStereoDownmix.stereo;
    case 'SURROUND':
      return Eac3AtmosStereoDownmix.surround;
    case 'DPL2':
      return Eac3AtmosStereoDownmix.dpl2;
  }
  throw Exception('$this is not known in enum Eac3AtmosStereoDownmix');
}