copyWith method
Implementation
UserSemesterSummaryCadreRole copyWith({
int? id,
int? summary,
String? role,
}) => UserSemesterSummaryCadreRole(
id: id ?? this.id,
summary: summary ?? this.summary,
role: role ?? this.role,
);
UserSemesterSummaryCadreRole copyWith({
int? id,
int? summary,
String? role,
}) => UserSemesterSummaryCadreRole(
id: id ?? this.id,
summary: summary ?? this.summary,
role: role ?? this.role,
);