copyWith method

StoryPrivacySettingsEveryone copyWith({
  1. List<int>? exceptUserIds,
})

Implementation

StoryPrivacySettingsEveryone copyWith({List<int>? exceptUserIds}) =>
    StoryPrivacySettingsEveryone(
      exceptUserIds: exceptUserIds ?? this.exceptUserIds,
    );