copyWith method
Implementation
WatchlistScreeningAuditTrail copyWith(
{enums.Source? source, String? dashboardUserId, String? timestamp}) {
return WatchlistScreeningAuditTrail(
source: source ?? this.source,
dashboardUserId: dashboardUserId ?? this.dashboardUserId,
timestamp: timestamp ?? this.timestamp);
}