copyWithWrapped method

TaskCourseTheme copyWithWrapped({
  1. Wrapped<int>? id,
  2. Wrapped<String>? name,
})

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),
  );
}