StudentLoanRepaymentModel constructor

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

Implementation

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