copyWith method
Implementation
UserSemesterSummaryCadreRolesCompanion copyWith({
Value<int>? id,
Value<int>? summary,
Value<String>? role,
}) {
return UserSemesterSummaryCadreRolesCompanion(
id: id ?? this.id,
summary: summary ?? this.summary,
role: role ?? this.role,
);
}