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