onOutputFinished method
Implementation
StreamSubscription onOutputFinished(Function(Map<String, dynamic>) callback) {
return AvPlatformInterface.instance
.getEventBroadcastStream()
.listen((event) {
if (event['type'] == 'audioPlayer/finishedPlaying') {
callback(event['payload']);
}
});
}