copyWith method

StoryFullId copyWith({
  1. int? posterChatId,
  2. int? storyId,
})

Implementation

StoryFullId copyWith({int? posterChatId, int? storyId}) => StoryFullId(
  posterChatId: posterChatId ?? this.posterChatId,
  storyId: storyId ?? this.storyId,
);