addAudioChunk method
Adds an audio chunk to the audio player.
chunk: The audio data to be added to the player.
Implementation
void addAudioChunk(Uint8List chunk) {
audioChunkPlayer.feedChunk(chunk); // Feed the audio chunk to the player
}
Adds an audio chunk to the audio player.
chunk: The audio data to be added to the player.
void addAudioChunk(Uint8List chunk) {
audioChunkPlayer.feedChunk(chunk); // Feed the audio chunk to the player
}