createContextDefaultParams function

whisper_context_params createContextDefaultParams()

Implementation

whisper_context_params createContextDefaultParams() {
  if (!WhisperLibrary.loaded) {
    if (!WhisperLibrary.flagFirst) {
      WhisperLibrary.init();
    } else {
      throw Exception('libwhisper is not loaded!');
    }
  }
  return WhisperLibrary.binding.whisper_context_default_params();
}