copyWith method
Implementation
CourseOfferingStudentsCompanion copyWith({
Value<int>? courseOffering,
Value<int>? student,
Value<int>? rowid,
}) {
return CourseOfferingStudentsCompanion(
courseOffering: courseOffering ?? this.courseOffering,
student: student ?? this.student,
rowid: rowid ?? this.rowid,
);
}