While recording on iOS, onProgress always provides zero.
Please note the same issue exists in flutter_sound:
Canardoux/flutter_sound#517
But how do I "translate" the workaround suggested there to tau?
Specifying SessionCategory.record along with AudioFocus.requestFocusAndDuckOthers seems to be working:
await _audioRecorder.openAudioSession(
focus: AudioFocus.requestFocusAndDuckOthers,
category: SessionCategory.record,
);