I am sending push notification with firebase from nodejs server.
the message payload is like this.
const notificationObjNew: any = {
notification: {
body: "demo body",
title: "demo title",
badge : "100",
},
topic: notificationTopic
};
In IOS app I received this as-
{body:demo body,e:1,title:demo title}
Here is no badge property.