copyWith method
Implementation
UniversityCompanion copyWith({
Value<int>? id,
Value<String>? code,
Value<String>? name,
Value<String>? nameInEnglish,
Value<bool>? active,
Value<bool>? locked,
Value<String?>? imagePath,
Value<String?>? description,
Value<String?>? note,
}) {
return UniversityCompanion(
id: id ?? this.id,
code: code ?? this.code,
name: name ?? this.name,
nameInEnglish: nameInEnglish ?? this.nameInEnglish,
active: active ?? this.active,
locked: locked ?? this.locked,
imagePath: imagePath ?? this.imagePath,
description: description ?? this.description,
note: note ?? this.note,
);
}