copyWith method

IncomeVerificationTaxformsGetResponse copyWith({
  1. String? requestId,
  2. List<DocumentMetadata>? documentMetadata,
  3. List<Taxform>? taxforms,
  4. 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);
}