Skip to content

Commit

Permalink
Fixed missing params in notification
Browse files Browse the repository at this point in the history
Fixed #80
  • Loading branch information
obrunsmann committed Dec 22, 2023
1 parent 5391568 commit 28af31f
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions lib/src/models/notification.dart
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@ class Notification with _$Notification {
factory Notification.fromDto(api.Notification dto) => Notification(
id: dto.id,
code: dto.code,
content: dto.content,
subject: dto.subject,
senderId: dto.senderId,
createTime: dto.createTime.toDateTime(),
persistent: dto.persistent,
Expand Down

0 comments on commit 28af31f

Please sign in to comment.