Notification class
A notification that is sent to the user.
Notifications are sent to the user when something happens that they should be informed about (e.g. somebody invites them to a plan).
There are different types of notifications, that are defined in NotificationType.
- Annotations
Constructors
- Notification({@JsonKey(name: 'notificationid') required int id, @JsonKey(name: 'type') required NotificationType type, @JsonKey(name: 'userid') required int userId, @JsonKey(name: 'info') int? context, @JsonKey(name: 'timestamp') required int createdAtTimestamp, @JsonKey(name: 'timestamp_read') required int readAtTimestamp, @JsonKey(name: 'status') required int readAsInt})
-
A notification that is sent to the user.
factory
-
Notification.fromJson(Map<
String, dynamic> json) -
Loads a notification from a json map.
factory
Properties
- context → int?
-
Additional information for the notification.
read-onlyinherited
-
copyWith
→ $NotificationCopyWith<
Notification> -
read-onlyinherited
- createdAtTimestamp → int
-
The unix timestamp of when the notification was created.
read-onlyinherited
- hashCode → int
-
The hash code for this object.
read-onlyinherited
- id → int
-
The id of the notification.
read-onlyinherited
- read → bool
-
true
if the notification was read,false
otherwise.read-only - readAsInt → int
-
The read status of the notification as an integer.
read-onlyinherited
- readAtTimestamp → int
-
The unix timestamp of when the notification was read.
read-onlyinherited
- runtimeType → Type
-
A representation of the runtime type of the object.
read-onlyinherited
- type → NotificationType
-
The type of the notification.
read-onlyinherited
- userId → int
-
The id of the user that the notification is for.
read-onlyinherited
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toJson(
) → Map< String, dynamic> -
inherited
-
toString(
) → String -
A string representation of this object.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited