copyWith method

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

Implementation

UserPrivacySettingRules copyWith({
  List<UserPrivacySettingRule>? rules,
  dynamic extra,
  int? clientId,
}) =>
    UserPrivacySettingRules(
      rules: rules ?? this.rules,
      extra: extra ?? this.extra,
      clientId: clientId ?? this.clientId,
    );