StudentLoan constructor

StudentLoan({
  1. String? accountId,
  2. String? accountNumber,
  3. List<String>? disbursementDates,
  4. String? expectedPayoffDate,
  5. String? guarantor,
  6. double? interestRatePercentage,
  7. bool? isOverdue,
  8. double? lastPaymentAmount,
  9. String? lastPaymentDate,
  10. String? lastStatementIssueDate,
  11. String? loanName,
  12. StudentLoanStatus? loanStatus,
  13. double? minimumPaymentAmount,
  14. String? nextPaymentDueDate,
  15. String? originationDate,
  16. double? originationPrincipalAmount,
  17. double? outstandingInterestAmount,
  18. String? paymentReferenceNumber,
  19. PSLFStatus? pslfStatus,
  20. StudentRepaymentPlan? repaymentPlan,
  21. String? sequenceNumber,
  22. ServicerAddressData? servicerAddress,
  23. double? ytdInterestPaid,
  24. double? ytdPrincipalPaid,
})

Implementation

StudentLoan({
  this.accountId,
  this.accountNumber,
  this.disbursementDates,
  this.expectedPayoffDate,
  this.guarantor,
  this.interestRatePercentage,
  this.isOverdue,
  this.lastPaymentAmount,
  this.lastPaymentDate,
  this.lastStatementIssueDate,
  this.loanName,
  this.loanStatus,
  this.minimumPaymentAmount,
  this.nextPaymentDueDate,
  this.originationDate,
  this.originationPrincipalAmount,
  this.outstandingInterestAmount,
  this.paymentReferenceNumber,
  this.pslfStatus,
  this.repaymentPlan,
  this.sequenceNumber,
  this.servicerAddress,
  this.ytdInterestPaid,
  this.ytdPrincipalPaid,
});