copyWith method
Implementation
MaterialsCompanion copyWith({
Value<int>? id,
Value<int>? courseOffering,
Value<String?>? title,
Value<String?>? href,
}) {
return MaterialsCompanion(
id: id ?? this.id,
courseOffering: courseOffering ?? this.courseOffering,
title: title ?? this.title,
href: href ?? this.href,
);
}