copyWith method

UserSemesterSummaryTutorsCompanion copyWith({
  1. Value<int>? summary,
  2. Value<int>? teacher,
  3. Value<int>? rowid,
})

Implementation

UserSemesterSummaryTutorsCompanion copyWith({
  Value<int>? summary,
  Value<int>? teacher,
  Value<int>? rowid,
}) {
  return UserSemesterSummaryTutorsCompanion(
    summary: summary ?? this.summary,
    teacher: teacher ?? this.teacher,
    rowid: rowid ?? this.rowid,
  );
}