UserPrivacySettingRules constructor

const UserPrivacySettingRules({
  1. required List<UserPrivacySettingRule> rules,
  2. dynamic extra,
  3. int? clientId,
})

A list of privacy rules. Rules are matched in the specified order. The first matched rule defines the privacy setting for a given user. If no rule matches, the action is not allowed

Implementation

const UserPrivacySettingRules({
  required this.rules,
  this.extra,
  this.clientId,
});