copyWith method

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

Implementation

InvestmentFilter copyWith({List<String>? accountSubtypes}) {
  return InvestmentFilter(
      accountSubtypes: accountSubtypes ?? this.accountSubtypes);
}