copyWith method

SetChatActiveStoriesList copyWith({
  1. int? chatId,
  2. StoryList? storyList,
})

Implementation

SetChatActiveStoriesList copyWith({
  int? chatId,
  StoryList? storyList,
}) =>
    SetChatActiveStoriesList(
      chatId: chatId ?? this.chatId,
      storyList: storyList ?? this.storyList,
    );