copyWithWrapped method

StudentRepaymentPlan copyWithWrapped({
  1. Wrapped<String?>? description,
  2. Wrapped<StudentRepaymentPlanType?>? type,
})

Implementation

StudentRepaymentPlan copyWithWrapped(
    {Wrapped<String?>? description,
    Wrapped<enums.StudentRepaymentPlanType?>? type}) {
  return StudentRepaymentPlan(
      description:
          (description != null ? description.value : this.description),
      type: (type != null ? type.value : this.type));
}