Flutter - How to format title and body of notification in background?
问题 I am trying to display localized notification in flutter using firebase_messaging, I am getting a json with 3 language strings in body of a notification like so: {"it": "italian text", "de": "german text", "en": "english text"} As of now, it is showing the whole json string in the notification tray. How can I select the appropriate language text from the json and show in notification when app is in background? myBackgroundMessageHandler this function is never called. Thanks. 回答1: I could not