copyWith method

SetStoryPrivacySettings copyWith({
  1. int? storyId,
  2. StoryPrivacySettings? privacySettings,
})

Implementation

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