Change notification sound in iOS Flutter Change notification sound in iOS Flutter dart dart

Change notification sound in iOS Flutter


You should replace this default given sound name to your sound name.

var iOSPlatformChannelSpecifics = IOSNotificationDetails(sound: 'slow_spring_board.aiff'); //put your own sound text here 

(Before this, your sounds should be added to your project using Xcode)Here is the link how to add custom sound to your project for iOS devices using Xcode: https://medium.com/@dmennis/the-3-ps-to-custom-alert-sounds-in-ios-push-notifications-9ea2a2956c11

Note: Sound duration should be less than 30 seconds otherwise it will not work