copyWith method

WatchlistScreeningEntityProgramListRequest copyWith({
  1. String? secret,
  2. String? clientId,
  3. String? cursor,
})

Implementation

WatchlistScreeningEntityProgramListRequest copyWith(
    {String? secret, String? clientId, String? cursor}) {
  return WatchlistScreeningEntityProgramListRequest(
      secret: secret ?? this.secret,
      clientId: clientId ?? this.clientId,
      cursor: cursor ?? this.cursor);
}