Rohan Dave

Results 3 comments of Rohan Dave

HI @raymondk25 this seems to be an issue with your background handler not firing instead of the library. Try adding `content-available: true` for iOS and `priority: high` for android as...

@ProFive you need to ensure your background handler function is a static or top level function since flutter runs on an Isolate in the background. Additionally, I would check XCode...

Hi @ProFive can you try putting `FirebaseMessaging.onBackgroundMessage(handleBackgroundNotification);` in your app's `initState` method where `handleBackgroundNotification` is a top level function i.e. not nested inside any class