I have a payload coming in from a web service and part of what I receive is this:
[AnyHashable("aps"): {
alert = "Message from Web service";
sound = default;
}
And when I receive a notification when app is in the background, it will show the notification banner with the "Message from Web service" string. How do I change this string? I'm checking and I don't see any functions being called when app is receiving notifications in the background.
Thanks.