copyWith method

SemestersCompanion copyWith({
  1. Value<int>? id,
  2. Value<int>? year,
  3. Value<int>? term,
})

Implementation

SemestersCompanion copyWith({
  Value<int>? id,
  Value<int>? year,
  Value<int>? term,
}) {
  return SemestersCompanion(
    id: id ?? this.id,
    year: year ?? this.year,
    term: term ?? this.term,
  );
}