copyWith method

UserSemesterSummaryCadreRolesCompanion copyWith({
  1. Value<int>? id,
  2. Value<int>? summary,
  3. Value<String>? role,
})

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