copyWith method

  1. @override
UpdateStoryListChatCount copyWith({
  1. StoryList? storyList,
  2. int? chatCount,
  3. dynamic extra,
  4. int? clientId,
})
override

Implementation

@override
UpdateStoryListChatCount copyWith({
  StoryList? storyList,
  int? chatCount,
  dynamic extra,
  int? clientId,
}) =>
    UpdateStoryListChatCount(
      storyList: storyList ?? this.storyList,
      chatCount: chatCount ?? this.chatCount,
      extra: extra ?? this.extra,
      clientId: clientId ?? this.clientId,
    );