SchedulesCompanion constructor

const SchedulesCompanion({
  1. Value<int> id = const Value.absent(),
  2. Value<int> courseOffering = const Value.absent(),
  3. Value<DayOfWeek> dayOfWeek = const Value.absent(),
  4. Value<Period> period = const Value.absent(),
  5. Value<int?> classroom = const Value.absent(),
})

Implementation

const SchedulesCompanion({
  this.id = const Value.absent(),
  this.courseOffering = const Value.absent(),
  this.dayOfWeek = const Value.absent(),
  this.period = const Value.absent(),
  this.classroom = const Value.absent(),
});