copyWith method

CourseOfferingStudent copyWith({
  1. int? courseOffering,
  2. int? student,
})

Implementation

CourseOfferingStudent copyWith({int? courseOffering, int? student}) =>
    CourseOfferingStudent(
      courseOffering: courseOffering ?? this.courseOffering,
      student: student ?? this.student,
    );