copyWithWrapped method

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

Implementation

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