copyWithWrapped method
      
LiabilitiesObject
copyWithWrapped({ 
    
    
- Wrapped<List< ? credit,CreditCardLiability> ?>
- Wrapped<List< ? mortgage,MortgageLiability> ?>
- Wrapped<List< ? student,StudentLoan> ?>
Implementation
LiabilitiesObject copyWithWrapped(
    {Wrapped<List<CreditCardLiability>?>? credit,
    Wrapped<List<MortgageLiability>?>? mortgage,
    Wrapped<List<StudentLoan>?>? student}) {
  return LiabilitiesObject(
      credit: (credit != null ? credit.value : this.credit),
      mortgage: (mortgage != null ? mortgage.value : this.mortgage),
      student: (student != null ? student.value : this.student));
}