copyWith method
Implementation
ListStudentCoursesResponse copyWith({
List<CourseSummaryItem>? items,
Paging? paging,
}) {
return ListStudentCoursesResponse(
items: items ?? this.items,
paging: paging ?? this.paging,
);
}
ListStudentCoursesResponse copyWith({
List<CourseSummaryItem>? items,
Paging? paging,
}) {
return ListStudentCoursesResponse(
items: items ?? this.items,
paging: paging ?? this.paging,
);
}