custom static method

Insertable<UserSemesterRanking> custom({
  1. Expression<int>? summary,
  2. Expression<String>? rankingType,
  3. Expression<int>? semesterRank,
  4. Expression<int>? semesterTotal,
  5. Expression<int>? grandTotalRank,
  6. Expression<int>? grandTotalTotal,
  7. Expression<int>? rowid,
})

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,
  });
}