copyWith method

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

Implementation

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