fromValue static method
Implementation
static ma_aaudio_input_preset fromValue(int value) => switch (value) {
0 => ma_aaudio_input_preset_default,
1 => ma_aaudio_input_preset_generic,
2 => ma_aaudio_input_preset_camcorder,
3 => ma_aaudio_input_preset_voice_recognition,
4 => ma_aaudio_input_preset_voice_communication,
5 => ma_aaudio_input_preset_unprocessed,
6 => ma_aaudio_input_preset_voice_performance,
_ => throw ArgumentError(
'Unknown value for ma_aaudio_input_preset: $value'),
};