StudentLoanAccountSummary constructor

StudentLoanAccountSummary({
  1. num? numberOfLoanAccounts,
  2. num? numberOfLoanServicers,
  3. String? recommendedLoanId,
  4. num? outstandingBalance,
  5. num? outstandingInterest,
  6. num? regularMonthlyPayment,
  7. num? pendingLoanTermInMonths,
  8. num? interestRate,
  9. num? originalPrincipalAmount,
  10. num? principalBalance,
  11. String? payoffDate,
})

Implementation

StudentLoanAccountSummary({
  num? numberOfLoanAccounts,
  num? numberOfLoanServicers,
  String? recommendedLoanId,
  num? outstandingBalance,
  num? outstandingInterest,
  num? regularMonthlyPayment,
  num? pendingLoanTermInMonths,
  num? interestRate,
  num? originalPrincipalAmount,
  num? principalBalance,
  String? payoffDate,
}) {
  _numberOfLoanAccounts = numberOfLoanAccounts;
  _numberOfLoanServicers = numberOfLoanServicers;
  _recommendedLoanId = recommendedLoanId;
  _outstandingBalance = outstandingBalance;
  _outstandingInterest = outstandingInterest;
  _regularMonthlyPayment = regularMonthlyPayment;
  _pendingLoanTermInMonths = pendingLoanTermInMonths;
  _interestRate = interestRate;
  _originalPrincipalAmount = originalPrincipalAmount;
  _principalBalance = principalBalance;
  _payoffDate = payoffDate;
}