Notification constructor
- {@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.
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