copyWithWrapped method

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