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