copyWith method
Implementation
IncomeVerificationTaxformsGetRequest copyWith(
{String? clientId,
String? secret,
String? incomeVerificationId,
String? accessToken}) {
return IncomeVerificationTaxformsGetRequest(
clientId: clientId ?? this.clientId,
secret: secret ?? this.secret,
incomeVerificationId: incomeVerificationId ?? this.incomeVerificationId,
accessToken: accessToken ?? this.accessToken);
}