copyWithCompanion method
Implementation
UserSemesterSummaryCadreRole copyWithCompanion(
UserSemesterSummaryCadreRolesCompanion data,
) {
return UserSemesterSummaryCadreRole(
id: data.id.present ? data.id.value : this.id,
summary: data.summary.present ? data.summary.value : this.summary,
role: data.role.present ? data.role.value : this.role,
);
}