copyWith method
Implementation
@override
UpdateStoryDeleted copyWith({
int? storySenderChatId,
int? storyId,
dynamic extra,
int? clientId,
}) =>
UpdateStoryDeleted(
storySenderChatId: storySenderChatId ?? this.storySenderChatId,
storyId: storyId ?? this.storyId,
extra: extra ?? this.extra,
clientId: clientId ?? this.clientId,
);