copyWith method
Implementation
RemoveNotification copyWith({
int? notificationGroupId,
int? notificationId,
}) => RemoveNotification(
notificationGroupId: notificationGroupId ?? this.notificationGroupId,
notificationId: notificationId ?? this.notificationId,
);