copyWith method

GetStory copyWith({
  1. int? storyPosterChatId,
  2. int? storyId,
  3. bool? onlyLocal,
})

Implementation

GetStory copyWith({int? storyPosterChatId, int? storyId, bool? onlyLocal}) =>
    GetStory(
      storyPosterChatId: storyPosterChatId ?? this.storyPosterChatId,
      storyId: storyId ?? this.storyId,
      onlyLocal: onlyLocal ?? this.onlyLocal,
    );