copyWith method

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

Implementation

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