copyWith method
Implementation
ChatActiveStories copyWith({
int? chatId,
StoryList? list,
int? order,
bool? canBeArchived,
int? maxReadStoryId,
List<StoryInfo>? stories,
}) => ChatActiveStories(
chatId: chatId ?? this.chatId,
list: list ?? this.list,
order: order ?? this.order,
canBeArchived: canBeArchived ?? this.canBeArchived,
maxReadStoryId: maxReadStoryId ?? this.maxReadStoryId,
stories: stories ?? this.stories,
);