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