copyWith method

Implementation

ChatSessionResponseCollectionOf copyWith(
    {List<ChatSessionResponse>? items, int? count}) {
  return ChatSessionResponseCollectionOf(
      items: items ?? this.items, count: count ?? this.count);
}