copyWithCompanion method
- StudentsCompanion data
Implementation
Student copyWithCompanion(StudentsCompanion data) {
return Student(
id: data.id.present ? data.id.value : this.id,
studentId: data.studentId.present ? data.studentId.value : this.studentId,
name: data.name.present ? data.name.value : this.name,
);
}