copyWith method

CreditAuditCopyTokenCreateRequest copyWith({
  1. String? clientId,
  2. String? secret,
  3. List<String>? reportTokens,
})

Implementation

CreditAuditCopyTokenCreateRequest copyWith(
    {String? clientId, String? secret, List<String>? reportTokens}) {
  return CreditAuditCopyTokenCreateRequest(
      clientId: clientId ?? this.clientId,
      secret: secret ?? this.secret,
      reportTokens: reportTokens ?? this.reportTokens);
}