copyWith method

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

Implementation

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