AppliedToLoans constructor

AppliedToLoans({
  1. String? loanId,
  2. num? percentage,
})

Implementation

AppliedToLoans({String? loanId, num? percentage}) {
  _loanId = loanId;
  _percentage = percentage;
}