copyWith method

CourseOfferingStudentsCompanion copyWith({
  1. Value<int>? courseOffering,
  2. Value<int>? student,
  3. Value<int>? rowid,
})

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,
  );
}