MortgageLiability constructor

MortgageLiability({
  1. String? accountId,
  2. String? accountNumber,
  3. double? currentLateFee,
  4. double? escrowBalance,
  5. bool? hasPmi,
  6. bool? hasPrepaymentPenalty,
  7. MortgageInterestRate? interestRate,
  8. double? lastPaymentAmount,
  9. String? lastPaymentDate,
  10. String? loanTypeDescription,
  11. String? loanTerm,
  12. String? maturityDate,
  13. double? nextMonthlyPayment,
  14. String? nextPaymentDueDate,
  15. String? originationDate,
  16. double? originationPrincipalAmount,
  17. double? pastDueAmount,
  18. MortgagePropertyAddress? propertyAddress,
  19. double? ytdInterestPaid,
  20. double? ytdPrincipalPaid,
})

Implementation

MortgageLiability({
  this.accountId,
  this.accountNumber,
  this.currentLateFee,
  this.escrowBalance,
  this.hasPmi,
  this.hasPrepaymentPenalty,
  this.interestRate,
  this.lastPaymentAmount,
  this.lastPaymentDate,
  this.loanTypeDescription,
  this.loanTerm,
  this.maturityDate,
  this.nextMonthlyPayment,
  this.nextPaymentDueDate,
  this.originationDate,
  this.originationPrincipalAmount,
  this.pastDueAmount,
  this.propertyAddress,
  this.ytdInterestPaid,
  this.ytdPrincipalPaid,
});