copyWith method

Implementation

LinkTokenCreateRequestAccountSubtypes copyWith(
    {LinkTokenCreateRequestAccountSubtypes$Depository? depository,
    LinkTokenCreateRequestAccountSubtypes$Credit? credit,
    LinkTokenCreateRequestAccountSubtypes$Loan? loan,
    LinkTokenCreateRequestAccountSubtypes$Investment? investment}) {
  return LinkTokenCreateRequestAccountSubtypes(
      depository: depository ?? this.depository,
      credit: credit ?? this.credit,
      loan: loan ?? this.loan,
      investment: investment ?? this.investment);
}