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