copyWithCompanion method

UserSemesterSummaryCadreRole copyWithCompanion(
  1. UserSemesterSummaryCadreRolesCompanion data
)

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