copyWith method

WatchlistScreeningAuditTrail copyWith({
  1. Source? source,
  2. String? dashboardUserId,
  3. String? timestamp,
})

Implementation

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