copyWith method

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

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