copyWith method

UserSemesterSummaryCadreRole copyWith({
  1. int? id,
  2. int? summary,
  3. String? role,
})

Implementation

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