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