FCM kinda works [does not receive notifications]

This commit is contained in:
2024-06-01 03:06:02 +02:00
parent 4c02afb957
commit 0b7fb533da
15 changed files with 219 additions and 68 deletions
+7 -2
View File
@@ -1,6 +1,11 @@
class KeyTokenAuth {
final String userId;
final String token;
final String tokenAdmin;
final String tokenSend;
KeyTokenAuth({required this.userId, required this.token});
KeyTokenAuth({
required this.userId,
required this.tokenAdmin,
required this.tokenSend,
});
}