setOnNotificationClick method
Gets called when user clicks on notification
Implementation
setOnNotificationClick(Function onNotificationClick) async {
await _notificationsPlugin.initialize(initializationSettings,
onDidReceiveNotificationResponse: (payload) async {
await onNotificationClick(payload);
});
}