fromValue static method

CodecID fromValue(
  1. int value
)

Implementation

static CodecID fromValue(int value) => switch (value) {
      0 => CODEC_ID_PCM,
      1 => CODEC_ID_OPUS,
      _ => throw ArgumentError('Unknown value for CodecID: $value'),
    };