modifyNotificationJson method
dynamic
modifyNotificationJson(
- dynamic message
This method will modify the message format of iOS Notification Data
Implementation
/*RemoteMessage*/ modifyNotificationJson(message) {
message['data'] = Map.from(message ?? {});
message['notification'] = message['aps']['alert'];
logCat(message);
return message;
}