copyWith method

SetChatPinnedStories copyWith({
  1. int? chatId,
  2. List<int>? storyIds,
})

Implementation

SetChatPinnedStories copyWith({int? chatId, List<int>? storyIds}) =>
    SetChatPinnedStories(
      chatId: chatId ?? this.chatId,
      storyIds: storyIds ?? this.storyIds,
    );