copyWithWrapped method
Implementation
IncomeVerificationTaxformsGetRequest copyWithWrapped(
{Wrapped<String?>? clientId,
Wrapped<String?>? secret,
Wrapped<String?>? incomeVerificationId,
Wrapped<String?>? accessToken}) {
return IncomeVerificationTaxformsGetRequest(
clientId: (clientId != null ? clientId.value : this.clientId),
secret: (secret != null ? secret.value : this.secret),
incomeVerificationId: (incomeVerificationId != null
? incomeVerificationId.value
: this.incomeVerificationId),
accessToken:
(accessToken != null ? accessToken.value : this.accessToken));
}