StudentLoanRepaymentModel constructor

StudentLoanRepaymentModel({
  1. String? type,
  2. double? nonRepaymentMonths,
  3. double? repaymentMonths,
})

Implementation

StudentLoanRepaymentModel({
  this.type,
  this.nonRepaymentMonths,
  this.repaymentMonths,
});