STM32 Nucleo WL55 Error while compiling

I have a problem while compiling the MbedOS LoRaWan example for my Nucleo WL55JC2 board.

The error is:

[ERROR] In file included from ./main.cpp:26:
./lora_radio_helper.h:81:19: error: no matching constructor for initialization of ‘STM32WL_LoRaRadio’
STM32WL_LoRaRadio radio(MBED_CONF_STM32WL_LORA_DRIVER_RF_SWITCH_CTL1,
^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
./mbed-os/connectivity/drivers/lora/TARGET_STM32WL/STM32WL_LoRaRadio.h:56:7: note: candidate constructor (the implicit copy constructor) not viable: requires 1 argument, but 3 were provided
class STM32WL_LoRaRadio : public LoRaRadio {
^
./mbed-os/connectivity/drivers/lora/TARGET_STM32WL/STM32WL_LoRaRadio.h:59:5: note: candidate constructor not viable: requires 0 arguments, but 3 were provided
STM32WL_LoRaRadio();
^

I understand the error because the constructor doesn’t need an argument but 3 were provided. So i removed the 3 arguments but that didn’t really help, it only creates another error.

Has someone experienced the same error? Has someone already deployed a LoRa application on the Nucleo WL55 Board?

Thanks for your help!