custom static method
Implementation
static Insertable<UserSemesterRanking> custom({
Expression<int>? summary,
Expression<String>? rankingType,
Expression<int>? semesterRank,
Expression<int>? semesterTotal,
Expression<int>? grandTotalRank,
Expression<int>? grandTotalTotal,
Expression<int>? rowid,
}) {
return RawValuesInsertable({
if (summary != null) 'summary': summary,
if (rankingType != null) 'ranking_type': rankingType,
if (semesterRank != null) 'semester_rank': semesterRank,
if (semesterTotal != null) 'semester_total': semesterTotal,
if (grandTotalRank != null) 'grand_total_rank': grandTotalRank,
if (grandTotalTotal != null) 'grand_total_total': grandTotalTotal,
if (rowid != null) 'rowid': rowid,
});
}