toEac3PassthroughControl method
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');
}