copyWithWrapped method
ListStudentCoursesResponse
copyWithWrapped({
- Wrapped<
List< ? items,CourseSummaryItem> > - Wrapped<
Paging> ? paging,
Implementation
ListStudentCoursesResponse copyWithWrapped({
Wrapped<List<CourseSummaryItem>>? items,
Wrapped<Paging>? paging,
}) {
return ListStudentCoursesResponse(
items: (items != null ? items.value : this.items),
paging: (paging != null ? paging.value : this.paging),
);
}