These methods are accessible through
profile.notifications()which exposes aNotificationRepositoryinstance.
profile.notifications().all();profile.notifications().first();profile.notifications().last();profile.notifications().keys();profile.notifications().values();profile.notifications().get(notification.id);profile.notifications().push({
icon: "warning",
name: "Ledger Update Available",
body: "...",
action: "Read Changelog",
});profile.notifications().fill(notificationData);profile.notifications().has(notificationId);profile.notifications().forget("uuid");profile.notifications().flush();profile.notifications().count();profile.notifications().read();profile.notifications().unread();profile.notifications().markAsRead("uuid");