copyWithWrapped method

Implementation

AccountFilter copyWithWrapped(
    {Wrapped<AccountFilterSubtypes?>? depository,
    Wrapped<AccountFilterSubtypes?>? credit,
    Wrapped<AccountFilterSubtypes?>? loan,
    Wrapped<AccountFilterSubtypes?>? investment}) {
  return AccountFilter(
      depository: (depository != null ? depository.value : this.depository),
      credit: (credit != null ? credit.value : this.credit),
      loan: (loan != null ? loan.value : this.loan),
      investment: (investment != null ? investment.value : this.investment));
}