copyWith method

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

Implementation

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