outputAudioBytes property

Uint8List? outputAudioBytes

Return the bytes of the outputAudio base64 encoded String so you can reproduce the audio

Implementation

Uint8List? get outputAudioBytes =>
    outputAudio != null ? base64.decode(outputAudio!) : null;