copyWith method

UpdateStoryListChatCount copyWith({
  1. StoryList? storyList,
  2. int? chatCount,
})

Implementation

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