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