toEac3PassthroughControl method

Eac3PassthroughControl toEac3PassthroughControl()

Implementation

Eac3PassthroughControl toEac3PassthroughControl() {
  switch (this) {
    case 'WHEN_POSSIBLE':
      return Eac3PassthroughControl.whenPossible;
    case 'NO_PASSTHROUGH':
      return Eac3PassthroughControl.noPassthrough;
  }
  throw Exception('$this is not known in enum Eac3PassthroughControl');
}