copyWith method
Implementation
EditStoryCover copyWith({
int? storyPosterChatId,
int? storyId,
double? coverFrameTimestamp,
}) => EditStoryCover(
storyPosterChatId: storyPosterChatId ?? this.storyPosterChatId,
storyId: storyId ?? this.storyId,
coverFrameTimestamp: coverFrameTimestamp ?? this.coverFrameTimestamp,
);