copyWith method

Implementation

LongreadMaterialsByIdResponse copyWith({
  List<LongreadMaterialItem>? items,
  Paging? paging,
}) {
  return LongreadMaterialsByIdResponse(
    items: items ?? this.items,
    paging: paging ?? this.paging,
  );
}