Notification constructor

Notification(
  1. {@JsonKey(name: 'notificationid') required int id,
  2. @JsonKey(name: 'type') required NotificationType type,
  3. @JsonKey(name: 'userid') required int userId,
  4. @JsonKey(name: 'info') int? context,
  5. @JsonKey(name: 'timestamp') required int createdAtTimestamp,
  6. @JsonKey(name: 'timestamp_read') required int readAtTimestamp,
  7. @JsonKey(name: 'status') required int readAsInt}
)

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.

Implementation

factory Notification