fromValue static method

Implementation

static ma_data_converter_execution_path fromValue(int value) =>
    switch (value) {
      0 => ma_data_converter_execution_path_passthrough,
      1 => ma_data_converter_execution_path_format_only,
      2 => ma_data_converter_execution_path_channels_only,
      3 => ma_data_converter_execution_path_resample_only,
      4 => ma_data_converter_execution_path_resample_first,
      5 => ma_data_converter_execution_path_channels_first,
      _ => throw ArgumentError(
          "Unknown value for ma_data_converter_execution_path: $value"),
    };