StudentLoanAccounts constructor

StudentLoanAccounts({
  1. Profile? profile,
  2. StudentLoanAccountsSummary? studentLoanAccountsSummary,
  3. List<LoanAccounts>? loanAccounts,
  4. num? createdOn,
  5. num? updatedOn,
  6. String? accountId,
  7. String? loanServicerId,
  8. bool? isLoanServicerIntegrated,
  9. ConnectionStatus? connectionStatus,
  10. String? accountUserName,
})

Implementation

StudentLoanAccounts({
  Profile? profile,
  StudentLoanAccountsSummary? studentLoanAccountsSummary,
  List<LoanAccounts>? loanAccounts,
  num? createdOn,
  num? updatedOn,
  String? accountId,
  String? loanServicerId,
  bool? isLoanServicerIntegrated,
  ConnectionStatus? connectionStatus,
  String? accountUserName,
}) {
  _profile = profile;
  _studentLoanAccountsSummary = studentLoanAccountsSummary;
  _loanAccounts = loanAccounts;
  _createdOn = createdOn;
  _updatedOn = updatedOn;
  _accountId = accountId;
  _loanServicerId = loanServicerId;
  _isLoanServicerIntegrated = isLoanServicerIntegrated;
  _connectionStatus = connectionStatus;
  _accountUserName = accountUserName;
}