NotificationsRepository class abstract

Base class for all notification repositories.

A notification repository is responsible for fetching, filtering and marking notifications as read.

Implementers

Constructors

NotificationsRepository()

Properties

hashCode int
The hash code for this object.
read-onlyinherited
runtimeType Type
A representation of the runtime type of the object.
read-onlyinherited

Methods

filterNotifications(List<Notification> notifications, {NotificationType? type, bool? read}) List<Notification>
Filters the given notifications based on type and read status.
getNotifications() Future<List<Notification>>
Returns all notifications for the currently logged in user.
markAllNotificationsAsRead() Future<List<Notification>>
Marks all notifications as read for the currently logged in user.
markNotificationAsRead(Notification notification) Future<Notification>
Marks the given notification as read.
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited