copyWith method

  1. @override
UserPrivacySettingRuleAllowUsers copyWith({
  1. List<int>? userIds,
})
override

Implementation

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