skip to Main Content

Flutter firebase messaging doesn't get notifications from firebase functions

Firebase functions: const functions = require("firebase-functions"); const admin = require('firebase-admin'); admin.initializeApp(); exports.chatNotifications = functions.firestore.document("chat/{docId}").onCreate( (snapshot, context) => { admin.messaging().sendToTopic( "chat", { notification: {title: "New message", body: "A new message has been sent"}, data: {click_action: "FLUTTER_NOTIFICATION_CLICK"}, } ); } ); Flutter:…

VIEW QUESTION
Back To Top
Search