add NotificationService class with stubs, and test file

This commit is contained in:
2025-02-02 12:43:52 -08:00
parent 390d524b58
commit d0359e22cc
2 changed files with 17 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
class NotificationService {
public startListeningForNotification() {
}
public stopListeningForNotification() {
}
public stopListeningForAllNotifications() {
}
public startReloadingNotificationTokens() {
}
}