copyWith method

InputMessageStory copyWith({
  1. int? storyPosterChatId,
  2. int? storyId,
})

Implementation

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