copyWith method
Implementation
UserSemesterRankingsCompanion copyWith({
Value<int>? summary,
Value<RankingType>? rankingType,
Value<int>? semesterRank,
Value<int>? semesterTotal,
Value<int>? grandTotalRank,
Value<int>? grandTotalTotal,
Value<int>? rowid,
}) {
return UserSemesterRankingsCompanion(
summary: summary ?? this.summary,
rankingType: rankingType ?? this.rankingType,
semesterRank: semesterRank ?? this.semesterRank,
semesterTotal: semesterTotal ?? this.semesterTotal,
grandTotalRank: grandTotalRank ?? this.grandTotalRank,
grandTotalTotal: grandTotalTotal ?? this.grandTotalTotal,
rowid: rowid ?? this.rowid,
);
}