copyWithCompanion method
- ClassesCompanion data
Implementation
ClassesData copyWithCompanion(ClassesCompanion data) {
return ClassesData(
id: data.id.present ? data.id.value : this.id,
fetchedAt: data.fetchedAt.present ? data.fetchedAt.value : this.fetchedAt,
code: data.code.present ? data.code.value : this.code,
nameZh: data.nameZh.present ? data.nameZh.value : this.nameZh,
);
}