copyWith method

SearchPublicStoriesByTag copyWith({
  1. int? storyPosterChatId,
  2. String? tag,
  3. String? offset,
  4. int? limit,
})

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,
);