custom static method
Implementation
static Insertable<Score> custom({
Expression<int>? id,
Expression<int>? user,
Expression<int>? semester,
Expression<int>? course,
Expression<int>? courseOffering,
Expression<int>? score,
Expression<String>? status,
}) {
return RawValuesInsertable({
if (id != null) 'id': id,
if (user != null) 'user': user,
if (semester != null) 'semester': semester,
if (course != null) 'course': course,
if (courseOffering != null) 'course_offering': courseOffering,
if (score != null) 'score': score,
if (status != null) 'status': status,
});
}