copyWith method
Implementation
ReportStory copyWith({
int? storyPosterChatId,
int? storyId,
String? optionId,
String? text,
}) => ReportStory(
storyPosterChatId: storyPosterChatId ?? this.storyPosterChatId,
storyId: storyId ?? this.storyId,
optionId: optionId ?? this.optionId,
text: text ?? this.text,
);