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