copyWith method
Implementation
IncomeVerificationTaxformsGetResponse copyWith(
{String? requestId,
List<DocumentMetadata>? documentMetadata,
List<Taxform>? taxforms,
Error? error}) {
return IncomeVerificationTaxformsGetResponse(
requestId: requestId ?? this.requestId,
documentMetadata: documentMetadata ?? this.documentMetadata,
taxforms: taxforms ?? this.taxforms,
error: error ?? this.error);
}