copyWith method

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

Implementation

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