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