copyWith method

GetChatArchivedStories copyWith({
  1. int? chatId,
  2. int? fromStoryId,
  3. int? limit,
})

Implementation

GetChatArchivedStories copyWith({
  int? chatId,
  int? fromStoryId,
  int? limit,
}) => GetChatArchivedStories(
  chatId: chatId ?? this.chatId,
  fromStoryId: fromStoryId ?? this.fromStoryId,
  limit: limit ?? this.limit,
);