copyWith method
Implementation
StudentRepaymentPlan copyWith(
{String? description, enums.StudentRepaymentPlanType? type}) {
return StudentRepaymentPlan(
description: description ?? this.description, type: type ?? this.type);
}
StudentRepaymentPlan copyWith(
{String? description, enums.StudentRepaymentPlanType? type}) {
return StudentRepaymentPlan(
description: description ?? this.description, type: type ?? this.type);
}