createFullDefaultParams function
Implementation
whisper_full_params createFullDefaultParams(int strategy) {
if (!WhisperLibrary.loaded) {
if (!WhisperLibrary.flagFirst) {
WhisperLibrary.init();
} else {
throw Exception('libwhisper is not loaded!');
}
}
return WhisperLibrary.binding.whisper_full_default_params(strategy);
}