copyWith method

CloseStory copyWith({
  1. int? storySenderChatId,
  2. int? storyId,
})

Implementation

CloseStory copyWith({
  int? storySenderChatId,
  int? storyId,
}) =>
    CloseStory(
      storySenderChatId: storySenderChatId ?? this.storySenderChatId,
      storyId: storyId ?? this.storyId,
    );