setBalance method
Sets the balance of the audio player.
balance: The desired balance level (-1.0 for left, 1.0 for right).
Implementation
Future<void> setBalance(double balance) async {
audioChunkPlayer
.setBalance(balance); // Set the balance for the audio player
}