modifyNotificationJson method

RemoteMessage modifyNotificationJson(
  1. 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;
}