copyWith method
Implementation
SetStoryPrivacySettings copyWith({
int? storyId,
StoryPrivacySettings? privacySettings,
}) =>
SetStoryPrivacySettings(
storyId: storyId ?? this.storyId,
privacySettings: privacySettings ?? this.privacySettings,
);