copyWithWrapped method
Implementation
WatchlistScreeningAuditTrail copyWithWrapped(
    {Wrapped<enums.Source>? source,
    Wrapped<String?>? dashboardUserId,
    Wrapped<String>? timestamp}) {
  return WatchlistScreeningAuditTrail(
      source: (source != null ? source.value : this.source),
      dashboardUserId: (dashboardUserId != null
          ? dashboardUserId.value
          : this.dashboardUserId),
      timestamp: (timestamp != null ? timestamp.value : this.timestamp));
}