custom static method
Implementation
static Insertable<TeacherOfficeHour> custom({
Expression<int>? id,
Expression<int>? teacher,
Expression<int>? dayOfWeek,
Expression<int>? startHour,
Expression<int>? startMinute,
Expression<int>? endHour,
Expression<int>? endMinute,
}) {
return RawValuesInsertable({
if (id != null) 'id': id,
if (teacher != null) 'teacher': teacher,
if (dayOfWeek != null) 'day_of_week': dayOfWeek,
if (startHour != null) 'start_hour': startHour,
if (startMinute != null) 'start_minute': startMinute,
if (endHour != null) 'end_hour': endHour,
if (endMinute != null) 'end_minute': endMinute,
});
}