copyWithWrapped method

InvestmentFilter copyWithWrapped({
  1. Wrapped<List<String>>? accountSubtypes,
})

Implementation

InvestmentFilter copyWithWrapped({Wrapped<List<String>>? accountSubtypes}) {
  return InvestmentFilter(
      accountSubtypes: (accountSubtypes != null
          ? accountSubtypes.value
          : this.accountSubtypes));
}