How to disable/enable notification sound for your flutter application?

Viewed 1580

I want to disable sound for incoming notification when the user turn of the notification switch in my app.

I also read official documentation but couldn't find anything helpful.

Is there any way?

I tried This package for local notifications but didn't find what I am looking for!

2 Answers

This should be handled by your backend service. You can mute the sound by not sending "sound" key in your Cloud Messaging API. Read more here

Related