copyWith method
Implementation
NotificationSeen copyWith({
int? unseenCount,
List<NotificationModel>? notifications,
}) =>
NotificationSeen(
unseenCount: unseenCount ?? this.unseenCount,
notifications: notifications ?? this.notifications,
);