copyWith method
Implementation
StudentLoanRepaymentModel copyWith(
{String? type, double? nonRepaymentMonths, double? repaymentMonths}) {
return StudentLoanRepaymentModel(
type: type ?? this.type,
nonRepaymentMonths: nonRepaymentMonths ?? this.nonRepaymentMonths,
repaymentMonths: repaymentMonths ?? this.repaymentMonths);
}