copyWith method
Implementation
@override
MessageStory copyWith({
int? storySenderChatId,
int? storyId,
bool? viaMention,
}) =>
MessageStory(
storySenderChatId: storySenderChatId ?? this.storySenderChatId,
storyId: storyId ?? this.storyId,
viaMention: viaMention ?? this.viaMention,
);