copyWith method
Implementation
UpdateNotification copyWith({
int? notificationGroupId,
Notification? notification,
}) => UpdateNotification(
notificationGroupId: notificationGroupId ?? this.notificationGroupId,
notification: notification ?? this.notification,
);