copyWith method

StudentRepaymentPlan copyWith({
  1. String? description,
  2. StudentRepaymentPlanType? type,
})

Implementation

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