custom static method
Implementation
static Insertable<Semester> custom({
Expression<int>? id,
Expression<int>? year,
Expression<int>? term,
Expression<bool>? inCourseSemesterList,
Expression<DateTime>? courseTableFetchedAt,
}) {
return RawValuesInsertable({
if (id != null) 'id': id,
if (year != null) 'year': year,
if (term != null) 'term': term,
if (inCourseSemesterList != null)
'in_course_semester_list': inCourseSemesterList,
if (courseTableFetchedAt != null)
'course_table_fetched_at': courseTableFetchedAt,
});
}