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