copyWith method
Implementation
ClassroomsCompanion copyWith({
Value<int>? id,
Value<DateTime?>? fetchedAt,
Value<String>? code,
Value<String>? nameZh,
}) {
return ClassroomsCompanion(
id: id ?? this.id,
fetchedAt: fetchedAt ?? this.fetchedAt,
code: code ?? this.code,
nameZh: nameZh ?? this.nameZh,
);
}