full method
Implementation
void full(whisper_full_params wparams, List<double> pcmf32List) {
Pointer<Float> pcmf32 = allocateFloatPointer(pcmf32List);
if (WhisperLibrary.binding
.whisper_full(ctx, wparams, pcmf32, pcmf32List.length) !=
0) {
throw Exception("failed to process audio");
}
}