StudentLoanAccountsSummary constructor

StudentLoanAccountsSummary({
  1. num? outstandingBalance,
  2. num? outstandingInterest,
  3. num? regularMonthlyPayment,
  4. num? pendingLoanTermInMonths,
  5. String? expectedPayoffDate,
  6. num? interestRate,
  7. num? originalPrincipalAmount,
  8. num? principalBalance,
  9. String? recommendedLoanId,
})

Implementation

StudentLoanAccountsSummary({
  num? outstandingBalance,
  num? outstandingInterest,
  num? regularMonthlyPayment,
  num? pendingLoanTermInMonths,
  String? expectedPayoffDate,
  num? interestRate,
  num? originalPrincipalAmount,
  num? principalBalance,
  String? recommendedLoanId,
}) {
  _outstandingBalance = outstandingBalance;
  _outstandingInterest = outstandingInterest;
  _regularMonthlyPayment = regularMonthlyPayment;
  _pendingLoanTermInMonths = pendingLoanTermInMonths;
  _expectedPayoffDate = expectedPayoffDate;
  _interestRate = interestRate;
  _originalPrincipalAmount = originalPrincipalAmount;
  _principalBalance = principalBalance;
  _recommendedLoanId = recommendedLoanId;
}