how to handle push notification when app is in foreground and background. I'm getting the below payload data.
func application(application: UIApplication, didReceiveRemoteNotification userInfo: [NSObject : AnyObject], fetchCompletionHandler completionHandler: (UIBackgroundFetchResult) -> Void) {
FIRMessaging.messaging().appDidReceiveMessage(userInfo)
print(userInfo)
// [title: push, body: hi, collapse_key: do_not_collapse, icon: icon, from: 27]
}
how to handle this payload to get notification?