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