copyWith method
Implementation
WatchlistScreeningReview copyWith(
{String? id,
List<String>? confirmedHits,
List<String>? dismissedHits,
String? comment,
WatchlistScreeningAuditTrail? auditTrail}) {
return WatchlistScreeningReview(
id: id ?? this.id,
confirmedHits: confirmedHits ?? this.confirmedHits,
dismissedHits: dismissedHits ?? this.dismissedHits,
comment: comment ?? this.comment,
auditTrail: auditTrail ?? this.auditTrail);
}