copyWithWrapped method

WatchlistScreeningAuditTrail copyWithWrapped({
  1. Wrapped<Source>? source,
  2. Wrapped<String?>? dashboardUserId,
  3. Wrapped<String>? timestamp,
})

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));
}