copyWithWrapped method
Implementation
TaskCourseTheme copyWithWrapped({Wrapped<int>? id, Wrapped<String>? name}) {
return TaskCourseTheme(
id: (id != null ? id.value : this.id),
name: (name != null ? name.value : this.name),
);
}
TaskCourseTheme copyWithWrapped({Wrapped<int>? id, Wrapped<String>? name}) {
return TaskCourseTheme(
id: (id != null ? id.value : this.id),
name: (name != null ? name.value : this.name),
);
}