UpdateAddChatMembersPrivacyForbidden constructor

const UpdateAddChatMembersPrivacyForbidden({
  1. required int chatId,
  2. required List<int> userIds,
  3. dynamic extra,
  4. int? clientId,
})

Adding users to a chat has failed because of their privacy settings. An invite link can be shared with the users if appropriate

Implementation

const UpdateAddChatMembersPrivacyForbidden({
  required this.chatId,
  required this.userIds,
  this.extra,
  this.clientId,
});