copyWith method
Implementation
GetStoryPublicForwards copyWith({
int? storyPosterChatId,
int? storyId,
String? offset,
int? limit,
}) => GetStoryPublicForwards(
storyPosterChatId: storyPosterChatId ?? this.storyPosterChatId,
storyId: storyId ?? this.storyId,
offset: offset ?? this.offset,
limit: limit ?? this.limit,
);