copyWith method

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

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